jellyfin/MediaBrowser.Model/Sync/ItemFIleInfo.cs

34 lines
950 B
C#
Raw Normal View History

2014-12-26 18:45:06 +01: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 07:24:46 +01:00
/// Gets or sets the path.
/// </summary>
/// <value>The path.</value>
2014-12-29 06:56:55 +01:00
public string Path { get; set; }
2014-12-27 07:24:46 +01:00
/// <summary>
2014-12-26 18:45:06 +01:00
/// Gets or sets the type of the image.
/// </summary>
/// <value>The type of the image.</value>
2015-01-17 05:29:53 +01: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 18:45:06 +01:00
}
}