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

16 lines
567 B
C#

namespace ESuite.UI.E2E.Models
{
public class FormTemplateData
{
public string? Name { get; set; }
public string? ChildFormName { get; set; }
public bool NeedTable { get; set; }
public int TotalNumberOfColumns { get; set; }
public int ColumnNumber { get; set; }
public int TotalNumberOfRows { get; set; }
public int RowNumber { get; set; }
public string? CustomFields { get; set; }
public string? Text { get; set; }
public int Version { get; set; } = 1;
}
}