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

34 lines
950 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-29 05:56:55 +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>
2015-01-17 04:29:53 +00:00
public ImageType? ImageType { get; set; }
/// <summary>
/// Gets or sets the index.
/// </summary>
/// <value>The index.</value>
public int Index { get; set; }
2014-12-26 17:45:06 +00:00
}
}