jellyfin/MediaBrowser.Model/Dto/ChapterInfoDto.cs

41 lines
1.1 KiB
C#
Raw Normal View History

2016-07-15 21:53:28 +02:00
using System.Diagnostics;
2016-10-22 04:08:34 +02:00
using MediaBrowser.Model.Serialization;
2013-02-21 02:33:05 +01:00
namespace MediaBrowser.Model.Dto
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Class ChapterInfo
/// </summary>
[DebuggerDisplay("Name = {Name}")]
2016-07-15 21:53:28 +02:00
public class ChapterInfoDto
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Gets or sets the start position ticks.
/// </summary>
/// <value>The start position ticks.</value>
public long StartPositionTicks { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
/// Gets or sets the image tag.
/// </summary>
/// <value>The image tag.</value>
2014-05-08 22:09:53 +02:00
public string ImageTag { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets a value indicating whether this instance has image.
/// </summary>
/// <value><c>true</c> if this instance has image; otherwise, <c>false</c>.</value>
[IgnoreDataMember]
public bool HasImage
{
2014-05-08 22:09:53 +02:00
get { return ImageTag != null; }
2013-02-21 02:33:05 +01:00
}
}
}