2020-08-22 12:56:24 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 13:01:16 -07:00
|
|
|
using System;
|
2019-10-15 08:49:49 -07:00
|
|
|
using System.Text.Json.Serialization;
|
2019-01-13 12:25:32 -07:00
|
|
|
using MediaBrowser.Model.Entities;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
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 07:54:30 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public int Height { get; set; }
|
|
|
|
|
2020-03-23 12:05:49 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the blurhash.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The blurhash.</value>
|
2020-05-20 15:43:19 -07:00
|
|
|
public string BlurHash { get; set; }
|
2020-03-23 12:05:49 -07:00
|
|
|
|
2019-10-15 08:49:49 -07:00
|
|
|
[JsonIgnore]
|
2019-03-07 07:54:30 -07:00
|
|
|
public bool IsLocalFile => Path == null || !Path.StartsWith("http", StringComparison.OrdinalIgnoreCase);
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
}
|