You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
407 B
C#
19 lines
407 B
C#
namespace Sln.Wcs.UI.ViewModels.Base;
|
|
|
|
public class FieldConfig
|
|
{
|
|
public string PropertyName { get; set; } = string.Empty;
|
|
public string DisplayName { get; set; } = string.Empty;
|
|
public FieldType FieldType { get; set; } = FieldType.Text;
|
|
public bool IsReadOnly { get; set; }
|
|
public bool IsRequired { get; set; }
|
|
}
|
|
|
|
public enum FieldType
|
|
{
|
|
Text,
|
|
Number,
|
|
Combo,
|
|
CheckBox
|
|
}
|