diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-08-27 21:27:46 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-08-27 21:27:46 -0400 |
| commit | 93ded925a7670b698c2f80a3027644a0e2b183f1 (patch) | |
| tree | 94769eaeb1d2b4d5ddd81a2d9448d97383688601 /MediaBrowser.Controller | |
| parent | 809e4629c09821e7373bff79e0d0be86df11ce2c (diff) | |
Fixes #901 - Improve captured photo metadata
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Photo.cs | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/Photo.cs b/MediaBrowser.Controller/Entities/Photo.cs index 96995c315..542fbaa31 100644 --- a/MediaBrowser.Controller/Entities/Photo.cs +++ b/MediaBrowser.Controller/Entities/Photo.cs @@ -1,4 +1,5 @@ -using System.Collections.Generic; +using MediaBrowser.Model.Drawing; +using System.Collections.Generic; namespace MediaBrowser.Controller.Entities { @@ -20,5 +21,18 @@ namespace MediaBrowser.Controller.Entities return Model.Entities.MediaType.Photo; } } + + public int? Width { get; set; } + public int? Height { get; set; } + public string CameraManufacturer { get; set; } + public string CameraModel { get; set; } + public string Software { get; set; } + public double? ExposureTime { get; set; } + public double? FocalLength { get; set; } + + public ImageOrientation? Orientation { get; set; } + + public double? Aperture { get; set; } + public double? ShutterSpeed { get; set; } } } |
