diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-08-13 18:07:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-13 18:07:19 +0200 |
| commit | 04571e93f80ce707372c7fe811150133d288b9b7 (patch) | |
| tree | 9cdc340338c2934dde8596d9a2cac0b37de1efe5 /MediaBrowser.Controller/Entities/Photo.cs | |
| parent | d639b030ac6d6099ecd36eebc19ccd2fb6075b0a (diff) | |
| parent | ad6f27143f2fe8567e5c713bba1a4f93658dc707 (diff) | |
Merge pull request #6339 from richlander/mediabrowser-controller-entities
Diffstat (limited to 'MediaBrowser.Controller/Entities/Photo.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Photo.cs | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/MediaBrowser.Controller/Entities/Photo.cs b/MediaBrowser.Controller/Entities/Photo.cs index 3312a0e3e2..ba6ce189ac 100644 --- a/MediaBrowser.Controller/Entities/Photo.cs +++ b/MediaBrowser.Controller/Entities/Photo.cs @@ -36,6 +36,30 @@ namespace MediaBrowser.Controller.Entities } } + public string CameraMake { 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; } + + public double? Latitude { get; set; } + + public double? Longitude { get; set; } + + public double? Altitude { get; set; } + + public int? IsoSpeedRating { get; set; } + public override bool CanDownload() { return true; @@ -69,29 +93,5 @@ namespace MediaBrowser.Controller.Entities return base.GetDefaultPrimaryImageAspectRatio(); } - - public string CameraMake { 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; } - - public double? Latitude { get; set; } - - public double? Longitude { get; set; } - - public double? Altitude { get; set; } - - public int? IsoSpeedRating { get; set; } } } |
