mirror of
https://github.com/lampame/lampac-ukraine.git
synced 2026-04-16 09:22:21 +00:00
- Updated namespaces across all online modules to include LME prefix (e.g., AnimeON -> LME.AnimeON) - Changed routes from /lite/plugin to /lite/lme.plugin - Prefixed cache keys with lme. (e.g., jacktor: -> lme.jacktor:) - Updated module settings names and init calls to LME.Plugin - Bumped version numbers and updated manifest files with LME-prefixed class names - Replaced OnError calls to use lme.plugin identifiers - Modified log messages to include lme.plugin prefix for consistency
31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
using System.Collections.Generic;
|
||
|
||
namespace LME.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>();
|
||
}
|
||
}
|
||
} |