16 lines
567 B
C#
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;
|
|
}
|
|
} |