Backend/e-suite.Automation.UITests/ESuite.UI.E2E/Models/CustomFieldsData.cs
2026-01-20 21:50:10 +00:00

17 lines
613 B
C#

namespace ESuite.UI.E2E.Models
{
public class CustomFieldsData
{
public string? Name { get; set; }
public string? FieldType { get; set; }
public string? DefaultValue { get; set; }
public string? Sequence { get; set; }
public string? Glossary { get; set; }
public string? MinimumValue { get; set; }
public string? MaximumValue { get; set; }
public string? Step { get; set; }
public string? Required { get; set; }
public string? MultiLine { get; set; }
public string? MaxEntries { get; set; }
}
}