14 lines
443 B
C#
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; }
|
|
}
|
|
}
|