naps2/NAPS2.Escl/EsclInputCaps.cs
2023-12-11 17:21:40 -08:00

14 lines
460 B
C#

namespace NAPS2.Escl;
public class EsclInputCaps
{
// Units of 1/300 inch (per ESCL spec); supports A3 in both orientations
public const int DEFAULT_MAX_WIDTH = 5000;
public const int DEFAULT_MAX_HEIGHT = 5000;
public List<EsclSettingProfile> SettingProfiles { get; init; } = new();
public int? MinWidth { get; set; }
public int? MaxWidth { get; set; }
public int? MinHeight { get; set; }
public int? MaxHeight { get; set; }
}