Created
August 7, 2014 19:57
-
-
Save mikeobrien/fcf274e1853d922ef97c to your computer and use it in GitHub Desktop.
Model of request/response data
This file contains hidden or 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
{ | |
public string Name { get; set; } | |
public string Comments { get; set; } | |
public string TypeName { get; set; } | |
public string DefaultValue { get; set; } | |
public bool IsOpening { get; set; } | |
public bool IsClosing { get; set; } | |
public bool IsClosed { get; set; } | |
public bool IsMember { get; set; } | |
public bool IsLastMember { get; set; } | |
public bool IsSimpleType { get; set; } | |
public bool IsComplexType { get; set; } | |
public bool IsEnumeration { get; set; } | |
public bool IsArray { get; set; } | |
public bool IsDictionary { get; set; } | |
public bool IsString { get; set; } | |
public bool IsBoolean { get; set; } | |
public bool IsNumeric { get; set; } | |
public bool IsDateTime { get; set; } | |
public bool IsDuration { get; set; } | |
public bool IsGuid { get; set; } | |
public string KeyTypeName { get; set; } | |
public bool Required { get; set; } | |
public List<Option> Options { get; set; } | |
public string Whitespace { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment