12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- using System;
- using System.Collections.Generic;
- using GxPress.EnumConst;
- namespace GxPress.Result.Process
- {
-
-
-
- public class ProcessFormSettingResult
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public int ProcessId { 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; }
- }
- }
|