using MediaBrowser.Model.Entities;
using System;
namespace MediaBrowser.Controller.Entities
{
public class ItemImageInfo
{
///
/// Gets or sets the path.
///
/// The path.
public string Path { get; set; }
///
/// Gets or sets the length.
///
/// The length.
public long Length { get; set; }
///
/// Gets or sets the type.
///
/// The type.
public ImageType Type { get; set; }
///
/// Gets or sets the date modified.
///
/// The date modified.
public DateTime DateModified { get; set; }
}
}