naps2/NAPS2.Escl/EsclSettingProfile.cs
2023-12-13 21:46:45 -08:00

14 lines
508 B
C#

using NAPS2.Escl.Client;
namespace NAPS2.Escl;
public class EsclSettingProfile
{
public string? Name { get; init; }
public List<EsclColorMode> ColorModes { get; init; } = new();
public List<string> DocumentFormats { get; init; } = new();
public List<string> DocumentFormatsExt { get; init; } = new();
public List<DiscreteResolution> DiscreteResolutions { get; init; } = new();
public EsclRange? XResolutionRange { get; init; }
public EsclRange? YResolutionRange { get; init; }
}