Files
jellyfin-jellyfin-1/MediaBrowser.Model/Sync/ItemFIleInfo.cs

29 lines
791 B
C#
Raw Normal View History

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