2016-07-15 12:53:28 -07:00
|
|
|
|
using System.Diagnostics;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
2013-02-21 10:50:46 -07:00
|
|
|
|
namespace MediaBrowser.Model.Dto
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class ChapterInfo
|
|
|
|
|
/// </summary>
|
2014-01-12 02:31:24 -07:00
|
|
|
|
[DebuggerDisplay("Name = {Name}")]
|
2016-07-15 12:53:28 -07:00
|
|
|
|
public class ChapterInfoDto
|
2013-02-20 18:33:05 -07: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 13:09:53 -07:00
|
|
|
|
public string ImageTag { get; set; }
|
2013-02-20 18:33:05 -07: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 13:09:53 -07:00
|
|
|
|
get { return ImageTag != null; }
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|