You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
950 B
34 lines
950 B
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>
|
|
/// Gets or sets the path.
|
|
/// </summary>
|
|
/// <value>The path.</value>
|
|
public string Path { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the type of the image.
|
|
/// </summary>
|
|
/// <value>The type of the image.</value>
|
|
public ImageType? ImageType { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the index.
|
|
/// </summary>
|
|
/// <value>The index.</value>
|
|
public int Index { get; set; }
|
|
}
|
|
}
|