jellyfin-server/MediaBrowser.Model/Sync/ItemFIleInfo.cs

29 lines
793 B
C#
Raw Normal View History

2014-12-26 17:45:06 +00:00
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Model.Sync
{
public class ItemFileInfo
{
/// <summary>
/// Gets or sets the type.
/// </summary>
/// <value>The type.</value>
public ItemFileType Type { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
2014-12-27 06:24:46 +00:00
/// Gets or sets the path.
/// </summary>
/// <value>The path.</value>
2014-12-27 22:52:41 +00:00
public string[] Path { get; set; }
2014-12-27 06:24:46 +00:00
/// <summary>
2014-12-26 17:45:06 +00:00
/// Gets or sets the type of the image.
/// </summary>
/// <value>The type of the image.</value>
public ImageType ImageType { get; set; }
}
}