jellyfin/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs

275 lines
9 KiB
C#
Raw Normal View History

using MediaBrowser.Model.Dto;
2013-12-19 22:51:32 +01:00
using MediaBrowser.Model.Entities;
2014-06-29 21:59:52 +02:00
using MediaBrowser.Model.Extensions;
using MediaBrowser.Model.Library;
2014-01-15 06:38:08 +01:00
using System;
using System.Collections.Generic;
2014-01-17 21:51:29 +01:00
using System.ComponentModel;
using System.Diagnostics;
using System.Runtime.Serialization;
2013-10-31 21:45:58 +01:00
namespace MediaBrowser.Model.LiveTv
{
2014-01-18 11:03:47 +01:00
[DebuggerDisplay("Name = {Name}, ChannelName = {ChannelName}")]
2014-06-29 21:59:52 +02:00
public class RecordingInfoDto : IHasPropertyChangedEvent, IItemDto
2013-10-31 21:45:58 +01:00
{
/// <summary>
/// Id of the recording.
/// </summary>
public string Id { get; set; }
2013-12-22 18:16:24 +01:00
/// <summary>
2014-05-29 16:19:12 +02:00
/// Gets or sets the primary image aspect ratio.
/// </summary>
/// <value>The primary image aspect ratio.</value>
public double? PrimaryImageAspectRatio { get; set; }
/// <summary>
/// Gets or sets the original primary image aspect ratio.
/// </summary>
/// <value>The original primary image aspect ratio.</value>
public double? OriginalPrimaryImageAspectRatio { get; set; }
/// <summary>
2013-12-22 18:16:24 +01:00
/// Gets or sets the series timer identifier.
/// </summary>
/// <value>The series timer identifier.</value>
public string SeriesTimerId { get; set; }
2013-11-25 22:53:06 +01:00
/// <summary>
/// Gets or sets the external identifier.
/// </summary>
/// <value>The external identifier.</value>
public string ExternalId { get; set; }
2013-12-02 22:46:22 +01:00
2013-11-25 22:53:06 +01:00
/// <summary>
/// Gets or sets the program identifier.
/// </summary>
/// <value>The program identifier.</value>
public string ProgramId { get; set; }
2013-12-02 22:46:22 +01:00
/// <summary>
/// ChannelId of the recording.
/// </summary>
2013-10-31 21:45:58 +01:00
public string ChannelId { get; set; }
2014-02-23 06:52:30 +01:00
/// <summary>
/// Gets or sets the play access.
/// </summary>
/// <value>The play access.</value>
public PlayAccess PlayAccess { get; set; }
2014-01-17 21:51:29 +01:00
/// <summary>
/// Gets or sets the channel primary image tag.
/// </summary>
/// <value>The channel primary image tag.</value>
2014-05-08 22:09:53 +02:00
public string ChannelPrimaryImageTag { get; set; }
2014-01-17 21:51:29 +01:00
/// <summary>
/// ChannelName of the recording.
/// </summary>
2013-10-31 21:45:58 +01:00
public string ChannelName { get; set; }
2013-12-15 15:19:24 +01:00
/// <summary>
/// Gets or sets the name of the service.
/// </summary>
/// <value>The name of the service.</value>
public string ServiceName { get; set; }
/// <summary>
/// Name of the recording.
/// </summary>
2013-10-31 21:45:58 +01:00
public string Name { get; set; }
/// <summary>
/// Gets or sets the media streams.
/// </summary>
/// <value>The media streams.</value>
public List<MediaStream> MediaStreams { get; set; }
2013-12-02 22:46:22 +01:00
/// <summary>
/// Gets or sets the path.
/// </summary>
/// <value>The path.</value>
public string Path { get; set; }
/// <summary>
2013-12-04 21:55:42 +01:00
/// Overview of the recording.
/// </summary>
2013-12-04 21:55:42 +01:00
public string Overview { get; set; }
2013-10-31 21:45:58 +01:00
/// <summary>
/// The start date of the recording, in UTC.
2013-10-31 21:45:58 +01:00
/// </summary>
public DateTime StartDate { get; set; }
/// <summary>
/// The end date of the recording, in UTC.
2013-10-31 21:45:58 +01:00
/// </summary>
public DateTime EndDate { get; set; }
2014-01-13 06:41:00 +01:00
/// <summary>
/// Gets or sets the original air date.
/// </summary>
/// <value>The original air date.</value>
public DateTime? OriginalAirDate { get; set; }
2013-11-26 03:53:48 +01:00
/// <summary>
/// Gets or sets the status.
/// </summary>
/// <value>The status.</value>
public RecordingStatus Status { get; set; }
2013-12-02 22:46:22 +01:00
2013-12-28 22:37:01 +01:00
/// <summary>
/// Gets or sets the name of the status.
/// </summary>
/// <value>The name of the status.</value>
public string StatusName { get; set; }
2014-01-14 21:24:56 +01:00
/// <summary>
/// Gets or sets the completion percentage.
/// </summary>
/// <value>The completion percentage.</value>
public double? CompletionPercentage { get; set; }
2013-12-02 22:46:22 +01:00
/// <summary>
/// Genre of the program.
/// </summary>
public List<string> Genres { get; set; }
/// <summary>
/// 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>
public bool IsRepeat { get; set; }
/// <summary>
/// Gets or sets the episode title.
/// </summary>
/// <value>The episode title.</value>
public string EpisodeTitle { get; set; }
/// <summary>
2013-12-20 21:09:49 +01:00
/// Gets or sets the run time ticks.
/// </summary>
2013-12-20 21:09:49 +01:00
/// <value>The run time ticks.</value>
public long? RunTimeTicks { 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; }
2013-12-04 21:55:42 +01:00
/// <summary>
/// Gets or sets a value indicating whether this instance is hd.
/// </summary>
/// <value><c>true</c> if this instance is hd; otherwise, <c>false</c>.</value>
public bool? IsHD { get; set; }
/// <summary>
/// Gets or sets the audio.
/// </summary>
/// <value>The audio.</value>
public ProgramAudio? Audio { get; set; }
2013-12-20 21:09:49 +01:00
/// <summary>
/// Gets or sets a value indicating whether this instance is movie.
/// </summary>
/// <value><c>true</c> if this instance is movie; otherwise, <c>false</c>.</value>
public bool IsMovie { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is sports.
/// </summary>
/// <value><c>true</c> if this instance is sports; otherwise, <c>false</c>.</value>
public bool IsSports { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is series.
/// </summary>
/// <value><c>true</c> if this instance is series; otherwise, <c>false</c>.</value>
public bool IsSeries { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is live.
/// </summary>
/// <value><c>true</c> if this instance is live; otherwise, <c>false</c>.</value>
public bool IsLive { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is news.
/// </summary>
/// <value><c>true</c> if this instance is news; otherwise, <c>false</c>.</value>
public bool IsNews { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is kids.
/// </summary>
/// <value><c>true</c> if this instance is kids; otherwise, <c>false</c>.</value>
public bool IsKids { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is premiere.
/// </summary>
/// <value><c>true</c> if this instance is premiere; otherwise, <c>false</c>.</value>
public bool IsPremiere { get; set; }
2013-12-19 22:51:32 +01:00
/// <summary>
/// Gets or sets the image tags.
/// </summary>
/// <value>The image tags.</value>
2014-05-08 22:09:53 +02:00
public Dictionary<ImageType, string> ImageTags { get; set; }
2013-12-19 22:51:32 +01:00
2013-12-15 02:17:57 +01:00
/// <summary>
/// Gets or sets the user data.
/// </summary>
/// <value>The user data.</value>
public UserItemDataDto UserData { get; set; }
2014-01-20 20:55:49 +01:00
/// <summary>
/// Gets a value indicating whether this instance has primary image.
/// </summary>
/// <value><c>true</c> if this instance has primary image; otherwise, <c>false</c>.</value>
[IgnoreDataMember]
public bool HasPrimaryImage
{
get { return ImageTags != null && ImageTags.ContainsKey(ImageType.Primary); }
}
2013-12-19 22:51:32 +01:00
/// <summary>
/// Gets or sets the type.
/// </summary>
/// <value>The type.</value>
public string Type { get; set; }
public List<MediaSourceInfo> MediaSources { get; set; }
2013-12-02 22:46:22 +01:00
public RecordingInfoDto()
{
Genres = new List<string>();
2014-05-08 22:09:53 +02:00
ImageTags = new Dictionary<ImageType, string>();
MediaSources = new List<MediaSourceInfo>();
2013-12-02 22:46:22 +01:00
}
2014-01-17 19:23:00 +01:00
public event PropertyChangedEventHandler PropertyChanged;
2013-10-31 21:45:58 +01:00
}
}