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

14 lines
443 B
C#

namespace ESuite.UI.E2E.Models
{
public class SpecificationsData
{
public string? Name { get; set; }
public string? PrintSpecification { get; set; }
public string? SpecificationItems { get; set; }
public string? ItemValue { get; set; }
public string? Message { get; set; }
public bool MultiselectField { get; set; }
public int NumberOfItems { get; set; }
}
}