-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: include result from field metadata (#323)
- Loading branch information
Showing
1 changed file
with
69 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,81 +1,86 @@ | ||
namespace FMData | ||
namespace FMData; | ||
|
||
/// <summary> | ||
/// Field Metadata Instance | ||
/// </summary> | ||
public class FieldMetadata | ||
{ | ||
/// <summary> | ||
/// FIeld Metadata Instance | ||
/// Field Name | ||
/// </summary> | ||
public class FieldMetadata | ||
{ | ||
/// <summary> | ||
/// Field Name | ||
/// </summary> | ||
public string Name { get; set; } | ||
public string Name { get; set; } | ||
|
||
/// <summary> | ||
/// Field Type. | ||
/// </summary> | ||
/// <example>normal</example> | ||
public string Type { get; set; } | ||
/// <summary> | ||
/// Field Type. | ||
/// </summary> | ||
/// <example>normal</example> | ||
public string Type { get; set; } | ||
|
||
/// <summary> | ||
/// Field Display Type. | ||
/// </summary> | ||
/// <example>editText</example> | ||
public string DisplayType { get; set; } | ||
/// <summary> | ||
/// Field Display Type. | ||
/// </summary> | ||
/// <example>editText</example> | ||
public string DisplayType { get; set; } | ||
|
||
/// <summary> | ||
/// Field Value List. | ||
/// </summary> | ||
public string ValueList { get; set; } | ||
/// <summary> | ||
/// The data type for the field. | ||
/// </summary> | ||
/// <example>text</example> | ||
public string Result { get; set; } | ||
|
||
/// <summary> | ||
/// Is Field Global? | ||
/// </summary> | ||
public bool Global { get; set; } | ||
/// <summary> | ||
/// Field Value List. | ||
/// </summary> | ||
public string ValueList { get; set; } | ||
|
||
/// <summary> | ||
/// Is Field AutoEnter. | ||
/// </summary> | ||
public bool AutoEnter { get; set; } | ||
/// <summary> | ||
/// Is Field Global? | ||
/// </summary> | ||
public bool Global { get; set; } | ||
|
||
/// <summary> | ||
/// Is Field Four Digit Year? | ||
/// </summary> | ||
public bool FourDigitYear { get; set; } | ||
/// <summary> | ||
/// Is Field AutoEnter. | ||
/// </summary> | ||
public bool AutoEnter { get; set; } | ||
|
||
/// <summary> | ||
/// Is Field Four Digit Year? | ||
/// </summary> | ||
public bool FourDigitYear { get; set; } | ||
|
||
/// <summary> | ||
/// Field Maximum Repeat. | ||
/// </summary> | ||
public int MaxRepeat { get; set; } | ||
/// <summary> | ||
/// Field Maximum Repeat. | ||
/// </summary> | ||
public int MaxRepeat { get; set; } | ||
|
||
/// <summary> | ||
/// Field Maximum Length (characters). | ||
/// </summary> | ||
public int MaxCharacters { get; set; } | ||
/// <summary> | ||
/// Field Maximum Length (characters). | ||
/// </summary> | ||
public int MaxCharacters { get; set; } | ||
|
||
/// <summary> | ||
/// Field NotEmpty | ||
/// </summary> | ||
public bool NotEmpty { get; set; } | ||
/// <summary> | ||
/// Field NotEmpty | ||
/// </summary> | ||
public bool NotEmpty { get; set; } | ||
|
||
/// <summary> | ||
/// Is Numeric | ||
/// </summary> | ||
public bool Numeric { get; set; } | ||
/// <summary> | ||
/// Is Numeric | ||
/// </summary> | ||
public bool Numeric { get; set; } | ||
|
||
/// <summary> | ||
/// Time Of day | ||
/// </summary> | ||
/// <value></value> | ||
public bool TimeOfDay { get; set; } | ||
/// <summary> | ||
/// Time Of day | ||
/// </summary> | ||
/// <value></value> | ||
public bool TimeOfDay { get; set; } | ||
|
||
/// <summary> | ||
/// Repetition Start | ||
/// </summary> | ||
public int RepetitionStart { get; set; } | ||
/// <summary> | ||
/// Repetition Start | ||
/// </summary> | ||
public int RepetitionStart { get; set; } | ||
|
||
/// <summary> | ||
/// Repetition End | ||
/// </summary> | ||
public int RepetitionEnd { get; set; } | ||
} | ||
/// <summary> | ||
/// Repetition End | ||
/// </summary> | ||
public int RepetitionEnd { get; set; } | ||
} |