2019-01-13 20:01:16 +00:00
|
|
|
using System;
|
2019-01-13 19:25:32 +00:00
|
|
|
using MediaBrowser.Model.Entities;
|
2018-12-27 23:27:57 +00:00
|
|
|
using MediaBrowser.Model.Serialization;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
{
|
|
|
|
public class ItemImageInfo
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the path.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The path.</value>
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the type.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The type.</value>
|
|
|
|
public ImageType Type { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the date modified.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The date modified.</value>
|
|
|
|
public DateTime DateModified { get; set; }
|
|
|
|
|
|
|
|
public int Width { get; set; }
|
2019-03-07 14:54:30 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public int Height { get; set; }
|
|
|
|
|
|
|
|
[IgnoreDataMember]
|
2019-03-07 14:54:30 +00:00
|
|
|
public bool IsLocalFile => Path == null || !Path.StartsWith("http", StringComparison.OrdinalIgnoreCase);
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|