Files
jellyfin-jellyfin-1/MediaBrowser.Model/Dto/ChapterInfoDto.cs

41 lines
1.1 KiB
C#
Raw Normal View History

2016-07-15 15:53:28 -04:00
using System.Diagnostics;
2016-10-21 22:08:34 -04:00
using MediaBrowser.Model.Serialization;
2013-02-20 20:33:05 -05:00
namespace MediaBrowser.Model.Dto
2013-02-20 20:33:05 -05:00
{
/// <summary>
/// Class ChapterInfo
/// </summary>
[DebuggerDisplay("Name = {Name}")]
2016-07-15 15:53:28 -04:00
public class ChapterInfoDto
2013-02-20 20:33:05 -05: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 16:09:53 -04:00
public string ImageTag { get; set; }
2013-02-20 20:33:05 -05: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 16:09:53 -04:00
get { return ImageTag != null; }
2013-02-20 20:33:05 -05:00
}
}
}