47 lines
1.8 KiB
C#
47 lines
1.8 KiB
C#
using Newtonsoft.Json.Linq;
|
|
|
|
namespace Shared.Models.Module
|
|
{
|
|
public class OnlineEventsModel
|
|
{
|
|
public OnlineEventsModel(string id, string imdb_id, long kinopoisk_id, string title, string original_title, string original_language, int year, string source, string rchtype, int serial, bool life, bool islite, string account_email, string uid, string token, string nws_id, JObject kitconf)
|
|
{
|
|
this.id = id;
|
|
this.imdb_id = imdb_id;
|
|
this.kinopoisk_id = kinopoisk_id;
|
|
this.title = title;
|
|
this.original_title = original_title;
|
|
this.original_language = original_language;
|
|
this.year = year;
|
|
this.source = source;
|
|
this.rchtype = rchtype;
|
|
this.serial = serial;
|
|
this.life = life;
|
|
this.islite = islite;
|
|
this.account_email = account_email;
|
|
this.uid = uid;
|
|
this.token = token;
|
|
this.nws_id = nws_id;
|
|
this.kitconf = kitconf;
|
|
}
|
|
|
|
public string id { get; set; }
|
|
public string imdb_id { get; set; }
|
|
public long kinopoisk_id { get; set; }
|
|
public string title { get; set; }
|
|
public string original_title { get; set; }
|
|
public string original_language { get; set; }
|
|
public int year { get; set; }
|
|
public string source { get; set; }
|
|
public string rchtype { get; set; }
|
|
public int serial { get; set; }
|
|
public bool life { get; set; }
|
|
public bool islite { get; set; }
|
|
public string account_email { get; set; }
|
|
public string uid { get; set; }
|
|
public string token { get; set; }
|
|
public string nws_id { get; set; }
|
|
public JObject kitconf { get; set; }
|
|
}
|
|
}
|