jellyfin/MediaBrowser.Controller/Entities/ItemImageInfo.cs

27 lines
650 B
C#
Raw Normal View History

2014-02-07 21:30:41 +01:00
using MediaBrowser.Model.Entities;
using System;
namespace MediaBrowser.Controller.Entities
{
public class ItemImageInfo
{
2015-02-21 08:32:49 +01:00
/// <summary>
/// Gets or sets the path.
/// </summary>
/// <value>The path.</value>
2014-02-07 21:30:41 +01:00
public string Path { get; set; }
2015-02-21 08:32:49 +01:00
/// <summary>
/// Gets or sets the type.
/// </summary>
/// <value>The type.</value>
2014-02-07 21:30:41 +01:00
public ImageType Type { get; set; }
2015-02-21 08:32:49 +01:00
/// <summary>
/// Gets or sets the date modified.
/// </summary>
/// <value>The date modified.</value>
2014-02-07 21:30:41 +01:00
public DateTime DateModified { get; set; }
}
}