mirror of
https://github.com/lampame/lampac-ukraine.git
synced 2026-04-16 17:32:20 +00:00
31 lines
688 B
C#
31 lines
688 B
C#
using System.Collections.Generic;
|
|
|
|
namespace LME.Bamboo.Models
|
|
{
|
|
public class SearchResult
|
|
{
|
|
public string Title { get; set; }
|
|
public string Url { get; set; }
|
|
public string Poster { get; set; }
|
|
}
|
|
|
|
public class EpisodeInfo
|
|
{
|
|
public string Title { get; set; }
|
|
public string Url { get; set; }
|
|
public int? Episode { get; set; }
|
|
}
|
|
|
|
public class StreamInfo
|
|
{
|
|
public string Title { get; set; }
|
|
public string Url { get; set; }
|
|
}
|
|
|
|
public class SeriesEpisodes
|
|
{
|
|
public List<EpisodeInfo> Sub { get; set; } = new();
|
|
public List<EpisodeInfo> Dub { get; set; } = new();
|
|
}
|
|
}
|