mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 15:33:03 +03:00
34 lines
1009 B
C#
34 lines
1009 B
C#
|
|
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>
|
|||
|
|
public string[] LocalPath { get; set; }
|
|||
|
|
/// <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>
|
|||
|
|
public string UniqueId { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// Gets or sets the item identifier.
|
|||
|
|
/// </summary>
|
|||
|
|
/// <value>The item identifier.</value>
|
|||
|
|
public string ItemId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|