| | 1 | | #pragma warning disable CS1591 |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.Text.Json.Serialization; |
| | 5 | | using MediaBrowser.Model.Entities; |
| | 6 | |
|
| | 7 | | namespace MediaBrowser.Controller.Entities |
| | 8 | | { |
| | 9 | | public class ItemImageInfo |
| | 10 | | { |
| | 11 | | /// <summary> |
| | 12 | | /// Gets or sets the path. |
| | 13 | | /// </summary> |
| | 14 | | /// <value>The path.</value> |
| | 15 | | public required string Path { get; set; } |
| | 16 | |
|
| | 17 | | /// <summary> |
| | 18 | | /// Gets or sets the type. |
| | 19 | | /// </summary> |
| | 20 | | /// <value>The type.</value> |
| | 21 | | public ImageType Type { get; set; } |
| | 22 | |
|
| | 23 | | /// <summary> |
| | 24 | | /// Gets or sets the date modified. |
| | 25 | | /// </summary> |
| | 26 | | /// <value>The date modified.</value> |
| | 27 | | public DateTime DateModified { get; set; } |
| | 28 | |
|
| | 29 | | public int Width { get; set; } |
| | 30 | |
|
| | 31 | | public int Height { get; set; } |
| | 32 | |
|
| | 33 | | /// <summary> |
| | 34 | | /// Gets or sets the blurhash. |
| | 35 | | /// </summary> |
| | 36 | | /// <value>The blurhash.</value> |
| | 37 | | public string? BlurHash { get; set; } |
| | 38 | |
|
| | 39 | | [JsonIgnore] |
| 28 | 40 | | public bool IsLocalFile => !Path.StartsWith("http", StringComparison.OrdinalIgnoreCase); |
| | 41 | | } |
| | 42 | | } |