lampac-ukraine/Uaflix/Models/SerialAggregatedStructure.cs
baliasnyifeliks 2249a36c96 Fix
2026-01-31 21:30:55 +02:00

31 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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