using System.Collections.Generic; namespace Uaflix.Models { /// /// Агрегована структура серіалу з озвучками з усіх джерел (ashdi, zetvideo-serial, zetvideo-vod, ashdi-vod) /// public class SerialAggregatedStructure { /// /// URL головної сторінки серіалу /// public string SerialUrl { get; set; } /// /// Словник озвучок: ключ - displayName озвучки (наприклад, "[Ashdi] DniproFilm"), значення - VoiceInfo /// public Dictionary Voices { get; set; } /// /// Список всіх епізодів серіалу (використовується для zetvideo-vod) /// public List AllEpisodes { get; set; } public SerialAggregatedStructure() { Voices = new Dictionary(); AllEpisodes = new List(); } } }