1234567891011121314151617181920212223242526 |
- using InABox.Configuration;
- using InABox.Core;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Comal.Classes
- {
- public class MobilePhotoSettings : IGlobalConfigurationSettings
- {
- [Caption("Maximum photo width (px)")]
- [IntegerEditor]
- [EditorSequence(1)]
- public int MaxPhotoWidth { get; set; } = 1024;
- [Caption("Maximum photo height (px)")]
- [IntegerEditor]
- [EditorSequence(2)]
- public int MaxPhotoHeight { get; set; } = 1024;
- [Caption("Photo compression amount (%)")]
- [IntegerEditor]
- [EditorSequence(3)]
- public int PhotoCompression { get; set; } = 60;
- }
- }
|