diff options
Diffstat (limited to 'MediaBrowser.Model/LiveTv/RecordingInfoDto.cs')
| -rw-r--r-- | MediaBrowser.Model/LiveTv/RecordingInfoDto.cs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs b/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs index 9ad6233a6..86e82b562 100644 --- a/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs +++ b/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs @@ -81,6 +81,36 @@ namespace MediaBrowser.Model.LiveTv /// <value>The episode title.</value> public string EpisodeTitle { get; set; } + /// <summary> + /// Gets or sets the duration ms. + /// </summary> + /// <value>The duration ms.</value> + public int DurationMs { get; set; } + + /// <summary> + /// Gets or sets the type of the media. + /// </summary> + /// <value>The type of the media.</value> + public string MediaType { get; set; } + + /// <summary> + /// Gets or sets the type of the channel. + /// </summary> + /// <value>The type of the channel.</value> + public ChannelType ChannelType { get; set; } + + /// <summary> + /// Gets or sets the official rating. + /// </summary> + /// <value>The official rating.</value> + public string OfficialRating { get; set; } + + /// <summary> + /// Gets or sets the community rating. + /// </summary> + /// <value>The community rating.</value> + public float? CommunityRating { get; set; } + public RecordingInfoDto() { Genres = new List<string>(); |
