mirror of
https://github.com/lampame/lampac-ukraine.git
synced 2026-04-16 17:32:20 +00:00
16 lines
335 B
C#
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>();
|
|
}
|
|
}
|
|
}
|