lampac-ukraine/AshdiBase/Models/SerialStructure.cs
2026-01-30 18:48:54 +02:00

16 lines
335 B
C#

using System.Collections.Generic;
namespace AshdiBase.Models
{
public class SerialStructure
{
public string SerialUrl { get; set; }
public Dictionary<string, VoiceInfo> Voices { get; set; }
public SerialStructure()
{
Voices = new Dictionary<string, VoiceInfo>();
}
}
}