- using System.Drawing;
- namespace InABox.Mobile
- {
- public abstract class MobileImageOptions<T> : MobileDocumentOptions<T> where T : MobileDocumentSource
- {
- public int? Compression { get; set; }
- public bool? PDF { get; set; }
- public Size? Constraints { get; set; }
- }
- }
|