namespace MediaBrowser.Model.Dto
{
public class ImageByNameInfo
{
///
/// Gets or sets the name.
///
/// The name.
public string Name { get; set; }
///
/// Gets or sets the theme.
///
/// The theme.
public string Theme { get; set; }
///
/// Gets or sets the context.
///
/// The context.
public string Context { get; set; }
///
/// Gets or sets the length of the file.
///
/// The length of the file.
public long FileLength { get; set; }
///
/// Gets or sets the format.
///
/// The format.
public string Format { get; set; }
}
}