1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System.Collections.Generic;
- namespace GxPress.Entity.WorkProcessDto
- {
-
-
-
- public class FormField
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string Label { get; set; }
-
-
-
- public string Type { get; set; }
-
-
-
- public string Placeholder { get; set; }
-
-
-
- public string Unit { get; set; }
-
-
-
- public bool Required { get; set; }
-
-
-
- public int Sort { get; set; }
-
-
-
- public IEnumerable<string> Options { get; set; }
-
-
-
- public string Value { get; set; }
- }
- }
|