mirror of
https://github.com/lampame/lampac-ukraine.git
synced 2026-04-16 17:32:20 +00:00
12 lines
250 B
C#
12 lines
250 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; }
|
|
}
|
|
} |