naps2/NAPS2.Escl/EsclInputCaps.cs
2023-09-04 18:47:31 -07:00

10 lines
287 B
C#

namespace NAPS2.Escl;
public class EsclInputCaps
{
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; }
}