mirror of
https://github.com/lampame/lampac-ukraine.git
synced 2026-04-16 17:32:20 +00:00
16 lines
540 B
C#
16 lines
540 B
C#
using System;
|
|
|
|
namespace Uaflix.Models
|
|
{
|
|
public class EpisodeLinkInfo
|
|
{
|
|
public string url { get; set; }
|
|
public string title { get; set; }
|
|
public int season { get; set; }
|
|
public int episode { get; set; }
|
|
|
|
// Нові поля для підтримки змішаних плеєрів
|
|
public string playerType { get; set; } // "ashdi-serial", "zetvideo-serial", "zetvideo-vod"
|
|
public string iframeUrl { get; set; } // URL iframe для цього епізоду
|
|
}
|
|
} |