jellyfin/MediaBrowser.Controller/Entities/ItemImageInfo.cs

35 lines
901 B
C#
Raw Normal View History

using System;
2019-10-15 17:49:49 +02:00
using System.Text.Json.Serialization;
using MediaBrowser.Model.Entities;
2018-12-28 00:27:57 +01: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; }
2018-12-28 00:27:57 +01:00
public int Height { get; set; }
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public bool IsLocalFile => Path == null || !Path.StartsWith("http", StringComparison.OrdinalIgnoreCase);
2018-12-28 00:27:57 +01:00
}
}