2016-07-15 19:53:28 +00:00
|
|
|
|
using System;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-02-21 17:50:46 +00:00
|
|
|
|
namespace MediaBrowser.Model.Dto
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2013-02-22 20:11:17 +00:00
|
|
|
|
/// Class UserItemDataDto
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// </summary>
|
2016-07-15 19:53:28 +00:00
|
|
|
|
public class UserItemDataDto
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the rating.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The rating.</value>
|
2013-05-09 13:46:06 +00:00
|
|
|
|
public double? Rating { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2014-07-04 02:22:57 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the played percentage.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The played percentage.</value>
|
|
|
|
|
public double? PlayedPercentage { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the unplayed item count.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The unplayed item count.</value>
|
|
|
|
|
public int? UnplayedItemCount { get; set; }
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the playback position ticks.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The playback position ticks.</value>
|
|
|
|
|
public long PlaybackPositionTicks { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the play count.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The play count.</value>
|
|
|
|
|
public int PlayCount { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether this instance is favorite.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance is favorite; otherwise, <c>false</c>.</value>
|
|
|
|
|
public bool IsFavorite { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2013-02-21 17:50:46 +00:00
|
|
|
|
/// Gets or sets a value indicating whether this <see cref="UserItemDataDto" /> is likes.
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>null</c> if [likes] contains no value, <c>true</c> if [likes]; otherwise, <c>false</c>.</value>
|
|
|
|
|
public bool? Likes { get; set; }
|
|
|
|
|
|
2013-03-20 14:25:22 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the last played date.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The last played date.</value>
|
|
|
|
|
public DateTime? LastPlayedDate { get; set; }
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
2013-02-21 17:50:46 +00:00
|
|
|
|
/// Gets or sets a value indicating whether this <see cref="UserItemDataDto" /> is played.
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if played; otherwise, <c>false</c>.</value>
|
|
|
|
|
public bool Played { get; set; }
|
|
|
|
|
|
2013-10-03 18:02:23 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The key.</value>
|
|
|
|
|
public string Key { get; set; }
|
|
|
|
|
|
2015-04-17 03:31:19 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the item identifier.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The item identifier.</value>
|
|
|
|
|
public string ItemId { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|