MobileImageOptions.cs 300 B

1234567891011
  1. using System.Drawing;
  2. namespace InABox.Mobile
  3. {
  4. public abstract class MobileImageOptions<T> : MobileDocumentOptions<T> where T : MobileDocumentSource
  5. {
  6. public int? Compression { get; set; }
  7. public bool? PDF { get; set; }
  8. public Size? Constraints { get; set; }
  9. }
  10. }