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