jellyfin-server/MediaBrowser.Controller/Entities/ItemImageInfo.cs

19 lines
364 B
C#
Raw Normal View History

2014-02-07 20:30:41 +00:00
using MediaBrowser.Model.Entities;
using System;
namespace MediaBrowser.Controller.Entities
{
public class ItemImageInfo
{
public string Path { get; set; }
public ImageType Type { get; set; }
public DateTime DateModified { get; set; }
2014-10-12 15:18:26 +00:00
public int? Width { get; set; }
public int? Height { get; set; }
2014-02-07 20:30:41 +00:00
}
}