Skip to content

Commit 19131b4

Browse files
authored
fix: include result from field metadata (#323)
1 parent 86dea81 commit 19131b4

1 file changed

Lines changed: 69 additions & 64 deletions

File tree

src/FMData/FieldMetadata.cs

Lines changed: 69 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,86 @@
1-
namespace FMData
1+
namespace FMData;
2+
3+
/// <summary>
4+
/// Field Metadata Instance
5+
/// </summary>
6+
public class FieldMetadata
27
{
38
/// <summary>
4-
/// FIeld Metadata Instance
9+
/// Field Name
510
/// </summary>
6-
public class FieldMetadata
7-
{
8-
/// <summary>
9-
/// Field Name
10-
/// </summary>
11-
public string Name { get; set; }
11+
public string Name { get; set; }
1212

13-
/// <summary>
14-
/// Field Type.
15-
/// </summary>
16-
/// <example>normal</example>
17-
public string Type { get; set; }
13+
/// <summary>
14+
/// Field Type.
15+
/// </summary>
16+
/// <example>normal</example>
17+
public string Type { get; set; }
1818

19-
/// <summary>
20-
/// Field Display Type.
21-
/// </summary>
22-
/// <example>editText</example>
23-
public string DisplayType { get; set; }
19+
/// <summary>
20+
/// Field Display Type.
21+
/// </summary>
22+
/// <example>editText</example>
23+
public string DisplayType { get; set; }
2424

25-
/// <summary>
26-
/// Field Value List.
27-
/// </summary>
28-
public string ValueList { get; set; }
25+
/// <summary>
26+
/// The data type for the field.
27+
/// </summary>
28+
/// <example>text</example>
29+
public string Result { get; set; }
2930

30-
/// <summary>
31-
/// Is Field Global?
32-
/// </summary>
33-
public bool Global { get; set; }
31+
/// <summary>
32+
/// Field Value List.
33+
/// </summary>
34+
public string ValueList { get; set; }
3435

35-
/// <summary>
36-
/// Is Field AutoEnter.
37-
/// </summary>
38-
public bool AutoEnter { get; set; }
36+
/// <summary>
37+
/// Is Field Global?
38+
/// </summary>
39+
public bool Global { get; set; }
3940

40-
/// <summary>
41-
/// Is Field Four Digit Year?
42-
/// </summary>
43-
public bool FourDigitYear { get; set; }
41+
/// <summary>
42+
/// Is Field AutoEnter.
43+
/// </summary>
44+
public bool AutoEnter { get; set; }
45+
46+
/// <summary>
47+
/// Is Field Four Digit Year?
48+
/// </summary>
49+
public bool FourDigitYear { get; set; }
4450

45-
/// <summary>
46-
/// Field Maximum Repeat.
47-
/// </summary>
48-
public int MaxRepeat { get; set; }
51+
/// <summary>
52+
/// Field Maximum Repeat.
53+
/// </summary>
54+
public int MaxRepeat { get; set; }
4955

50-
/// <summary>
51-
/// Field Maximum Length (characters).
52-
/// </summary>
53-
public int MaxCharacters { get; set; }
56+
/// <summary>
57+
/// Field Maximum Length (characters).
58+
/// </summary>
59+
public int MaxCharacters { get; set; }
5460

55-
/// <summary>
56-
/// Field NotEmpty
57-
/// </summary>
58-
public bool NotEmpty { get; set; }
61+
/// <summary>
62+
/// Field NotEmpty
63+
/// </summary>
64+
public bool NotEmpty { get; set; }
5965

60-
/// <summary>
61-
/// Is Numeric
62-
/// </summary>
63-
public bool Numeric { get; set; }
66+
/// <summary>
67+
/// Is Numeric
68+
/// </summary>
69+
public bool Numeric { get; set; }
6470

65-
/// <summary>
66-
/// Time Of day
67-
/// </summary>
68-
/// <value></value>
69-
public bool TimeOfDay { get; set; }
71+
/// <summary>
72+
/// Time Of day
73+
/// </summary>
74+
/// <value></value>
75+
public bool TimeOfDay { get; set; }
7076

71-
/// <summary>
72-
/// Repetition Start
73-
/// </summary>
74-
public int RepetitionStart { get; set; }
77+
/// <summary>
78+
/// Repetition Start
79+
/// </summary>
80+
public int RepetitionStart { get; set; }
7581

76-
/// <summary>
77-
/// Repetition End
78-
/// </summary>
79-
public int RepetitionEnd { get; set; }
80-
}
82+
/// <summary>
83+
/// Repetition End
84+
/// </summary>
85+
public int RepetitionEnd { get; set; }
8186
}

0 commit comments

Comments
 (0)