2014-12-28 10:59:40 -07:00
|
|
|
|
using MediaBrowser.Model.Dto;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Sync
|
|
|
|
|
{
|
|
|
|
|
public class LocalItem
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the item.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The item.</value>
|
|
|
|
|
public BaseItemDto Item { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the local path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The local path.</value>
|
2014-12-28 22:56:55 -07:00
|
|
|
|
public string LocalPath { get; set; }
|
2014-12-28 10:59:40 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the server identifier.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The server identifier.</value>
|
|
|
|
|
public string ServerId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the unique identifier.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The unique identifier.</value>
|
2015-01-01 22:36:27 -07:00
|
|
|
|
public string Id { get; set; }
|
2014-12-28 10:59:40 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the item identifier.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The item identifier.</value>
|
|
|
|
|
public string ItemId { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|