Photo.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using MediaBrowser.Model.Drawing;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Controller.Entities
  4. {
  5. public class Photo : BaseItem, IHasTags, IHasTaglines
  6. {
  7. public List<string> Tags { get; set; }
  8. public List<string> Taglines { get; set; }
  9. public Photo()
  10. {
  11. Tags = new List<string>();
  12. Taglines = new List<string>();
  13. }
  14. public override string MediaType
  15. {
  16. get
  17. {
  18. return Model.Entities.MediaType.Photo;
  19. }
  20. }
  21. public int? Width { get; set; }
  22. public int? Height { get; set; }
  23. public string CameraManufacturer { get; set; }
  24. public string CameraModel { get; set; }
  25. public string Software { get; set; }
  26. public double? ExposureTime { get; set; }
  27. public double? FocalLength { get; set; }
  28. public ImageOrientation? Orientation { get; set; }
  29. public double? Aperture { get; set; }
  30. public double? ShutterSpeed { get; set; }
  31. }
  32. }