-
Notifications
You must be signed in to change notification settings - Fork 0
/
ShowInfo.cs
33 lines (32 loc) · 1.16 KB
/
ShowInfo.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CinemanaDownload
{
internal class ShowInfo
{
public string nb { get; set; }
public string en_title { get; set; }
public string ar_title { get; set; }
public string other_title { get; set; }
public string stars { get; set; }
public string enTranslationFile { get; set; }
public string arTranslationFile { get; set; }
public string fileFile { get; set; }
public string ar_content { get; set; }
public string en_content { get; set; }
public string mDate { get; set; }
public string year { get; set; }
public string kind { get; set; }
public string season { get; set; }
public string imgMediumThumbObjUrl { get; set; }
public string seriesRating { get; set; }
public string episodeNummer { get; set; }
public string trailer { get; set; }
public string ratingImg { get; set; }
public string arTranslationFilePath { get; set; }
public string enTranslationFilePath { get; set; }
}
}