ItemImageInfo.cs 364 B

123456789101112131415161718
  1. using MediaBrowser.Model.Entities;
  2. using System;
  3. namespace MediaBrowser.Controller.Entities
  4. {
  5. public class ItemImageInfo
  6. {
  7. public string Path { get; set; }
  8. public ImageType Type { get; set; }
  9. public DateTime DateModified { get; set; }
  10. public int? Width { get; set; }
  11. public int? Height { get; set; }
  12. }
  13. }