jellyfin/MediaBrowser.Model/LiveTv/ChannelInfoDto.cs

123 lines
3.8 KiB
C#
Raw Normal View History

2014-01-17 18:23:00 +00:00
using System.ComponentModel;
2014-01-18 10:03:47 +00:00
using System.Diagnostics;
2014-01-20 19:55:49 +00:00
using System.Runtime.Serialization;
2014-01-17 18:23:00 +00:00
using MediaBrowser.Model.Dto;
2013-11-29 18:44:51 +00:00
using MediaBrowser.Model.Entities;
using System;
using System.Collections.Generic;
2014-02-23 05:52:30 +00:00
using MediaBrowser.Model.Library;
2013-11-24 20:51:45 +00:00
namespace MediaBrowser.Model.LiveTv
{
/// <summary>
/// Class ChannelInfoDto
/// </summary>
2014-01-18 10:03:47 +00:00
[DebuggerDisplay("Name = {Name}, Number = {Number}")]
2014-01-17 18:23:00 +00:00
public class ChannelInfoDto : INotifyPropertyChanged, IItemDto
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
2013-11-15 21:31:44 +00:00
/// <summary>
/// Gets or sets the identifier.
/// </summary>
/// <value>The identifier.</value>
2013-10-31 20:45:58 +00:00
public string Id { get; set; }
2013-11-29 18:44:51 +00:00
2013-12-17 20:02:12 +00:00
/// <summary>
/// Gets or sets the external identifier.
/// </summary>
/// <value>The external identifier.</value>
public string ExternalId { get; set; }
2014-01-17 18:23:00 +00:00
public List<MediaSourceInfo> MediaSources { get; set; }
2013-11-24 20:51:45 +00:00
/// <summary>
2013-11-29 18:44:51 +00:00
/// Gets or sets the image tags.
2013-11-24 20:51:45 +00:00
/// </summary>
2013-11-29 18:44:51 +00:00
/// <value>The image tags.</value>
public Dictionary<ImageType, Guid> ImageTags { get; set; }
2014-01-17 18:23:00 +00:00
2013-11-15 21:31:44 +00:00
/// <summary>
/// Gets or sets the number.
/// </summary>
/// <value>The number.</value>
public string Number { get; set; }
2014-01-17 18:23:00 +00:00
2014-02-23 05:52:30 +00:00
/// <summary>
/// Gets or sets the play access.
/// </summary>
/// <value>The play access.</value>
public PlayAccess PlayAccess { get; set; }
/// <summary>
/// Gets or sets the name of the service.
/// </summary>
/// <value>The name of the service.</value>
public string ServiceName { get; set; }
/// <summary>
/// Gets or sets the type of the channel.
/// </summary>
/// <value>The type of the channel.</value>
public ChannelType ChannelType { get; set; }
2013-11-24 21:30:38 +00:00
/// <summary>
/// Gets or sets the type.
/// </summary>
/// <value>The type.</value>
public string Type { get; set; }
/// <summary>
/// Gets or sets the type of the media.
/// </summary>
/// <value>The type of the media.</value>
public string MediaType { get; set; }
2013-11-26 02:53:48 +00:00
/// <summary>
/// Gets or sets the user data.
/// </summary>
/// <value>The user data.</value>
public UserItemDataDto UserData { get; set; }
2013-11-29 18:44:51 +00:00
2014-01-02 21:21:06 +00:00
/// <summary>
/// Gets or sets the now playing program.
/// </summary>
/// <value>The now playing program.</value>
public ProgramInfoDto CurrentProgram { get; set; }
2014-01-14 20:03:35 +00:00
/// <summary>
/// Gets or sets the primary image aspect ratio, after image enhancements.
/// </summary>
/// <value>The primary image aspect ratio.</value>
public double? PrimaryImageAspectRatio { get; set; }
/// <summary>
/// Gets or sets the primary image aspect ratio, before image enhancements.
/// </summary>
/// <value>The original primary image aspect ratio.</value>
public double? OriginalPrimaryImageAspectRatio { get; set; }
2014-01-17 18:23:00 +00:00
2014-01-20 19:55:49 +00: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-11-29 18:44:51 +00:00
public ChannelInfoDto()
{
ImageTags = new Dictionary<ImageType, Guid>();
MediaSources = new List<MediaSourceInfo>();
2013-11-29 18:44:51 +00:00
}
2014-01-17 18:23:00 +00:00
public event PropertyChangedEventHandler PropertyChanged;
}
}