mirror of
https://github.com/lampame/lampac-ukraine.git
synced 2026-04-16 17:32:20 +00:00
22 lines
469 B
C#
22 lines
469 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace LME.Unimay.Models
|
|
{
|
|
public class Episode
|
|
{
|
|
[JsonPropertyName("number")]
|
|
public int Number { get; set; }
|
|
|
|
[JsonPropertyName("title")]
|
|
public string Title { get; set; }
|
|
|
|
[JsonPropertyName("hls")]
|
|
public Hls Hls { get; set; }
|
|
}
|
|
|
|
public class Hls
|
|
{
|
|
[JsonPropertyName("master")]
|
|
public string Master { get; set; }
|
|
}
|
|
} |