naps2/NAPS2.Escl/EsclInputCaps.cs

10 lines
287 B
C#
Raw Normal View History

namespace NAPS2.Escl;
public class EsclInputCaps
{
public List<EsclSettingProfile> SettingProfiles { get; init; } = new();
2023-09-05 04:47:31 +03:00
public int? MinWidth { get; set; }
public int? MaxWidth { get; set; }
public int? MinHeight { get; set; }
public int? MaxHeight { get; set; }
}