mirror of
https://github.com/lampame/lampac-ukraine.git
synced 2026-04-16 09:22:21 +00:00
19 lines
450 B
C#
19 lines
450 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CikavaIdeya.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 class PlayResult
|
|
{
|
|
public string iframe_url { get; set; }
|
|
public List<(string link, string quality)> streams { get; set; }
|
|
}
|
|
} |