|
|
|
@ -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; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|