14 lines
263 B
C#
14 lines
263 B
C#
namespace Shared.Models.Online.VDBmovies
|
|
{
|
|
public struct Episode
|
|
{
|
|
public string title { get; set; }
|
|
|
|
public string file { get; set; }
|
|
|
|
public string subtitle { get; set; }
|
|
|
|
public string subtitles { get; set; }
|
|
}
|
|
}
|