12 lines
294 B
C#
12 lines
294 B
C#
namespace Shared.Models.Online.Kinobase
|
|
{
|
|
public struct Playlist
|
|
{
|
|
public int id { get; set; }
|
|
public string file { get; set; }
|
|
public string comment { get; set; }
|
|
public string title { get; set; }
|
|
public string subtitle { get; set; }
|
|
}
|
|
}
|