move tv data

This commit is contained in:
Luke Pulverenti
2015-09-29 12:29:06 -04:00
parent 0d6580baf3
commit 6e222eaaf4
10 changed files with 53 additions and 43 deletions

View File

@@ -15,6 +15,6 @@ namespace MediaBrowser.Controller.Entities
bool IsLive { get; set; }
bool IsPremiere { get; set; }
ProgramAudio? Audio { get; set; }
DateTime? OriginalAirDate { get; set; }
string EpisodeTitle { get; set; }
}
}

View File

@@ -17,6 +17,7 @@ namespace MediaBrowser.Controller.LiveTv
public string ExternalId { get; set; }
public string ProviderImagePath { get; set; }
public string ProviderImageUrl { get; set; }
[IgnoreDataMember]
public string EpisodeTitle { get; set; }
[IgnoreDataMember]
public bool IsSeries { get; set; }
@@ -30,6 +31,7 @@ namespace MediaBrowser.Controller.LiveTv
public bool IsNews { get; set; }
[IgnoreDataMember]
public bool IsKids { get; set; }
[IgnoreDataMember]
public bool IsRepeat { get; set; }
[IgnoreDataMember]
public bool IsMovie { get; set; }
@@ -41,7 +43,6 @@ namespace MediaBrowser.Controller.LiveTv
public ChannelType ChannelType { get; set; }
public string ProgramId { get; set; }
public ProgramAudio? Audio { get; set; }
public DateTime? OriginalAirDate { get; set; }
/// <summary>
/// Gets the user data key.

View File

@@ -41,12 +41,6 @@ namespace MediaBrowser.Controller.LiveTv
/// </summary>
public string ExternalId { get; set; }
/// <summary>
/// Gets or sets the original air date.
/// </summary>
/// <value>The original air date.</value>
public DateTime? OriginalAirDate { get; set; }
/// <summary>
/// Gets or sets the type of the channel.
/// </summary>
@@ -75,12 +69,14 @@ namespace MediaBrowser.Controller.LiveTv
/// Gets or sets a value indicating whether this instance is repeat.
/// </summary>
/// <value><c>true</c> if this instance is repeat; otherwise, <c>false</c>.</value>
[IgnoreDataMember]
public bool IsRepeat { get; set; }
/// <summary>
/// Gets or sets the episode title.
/// </summary>
/// <value>The episode title.</value>
[IgnoreDataMember]
public string EpisodeTitle { get; set; }
/// <summary>

View File

@@ -17,6 +17,7 @@ namespace MediaBrowser.Controller.LiveTv
public string ExternalId { get; set; }
public string ProviderImagePath { get; set; }
public string ProviderImageUrl { get; set; }
[IgnoreDataMember]
public string EpisodeTitle { get; set; }
[IgnoreDataMember]
public bool IsSeries { get; set; }
@@ -30,6 +31,7 @@ namespace MediaBrowser.Controller.LiveTv
public bool IsNews { get; set; }
[IgnoreDataMember]
public bool IsKids { get; set; }
[IgnoreDataMember]
public bool IsRepeat { get; set; }
[IgnoreDataMember]
public bool IsMovie { get; set; }
@@ -41,7 +43,6 @@ namespace MediaBrowser.Controller.LiveTv
public ChannelType ChannelType { get; set; }
public string ProgramId { get; set; }
public ProgramAudio? Audio { get; set; }
public DateTime? OriginalAirDate { get; set; }
/// <summary>
/// Gets the user data key.