Skip to content

Instantly share code, notes, and snippets.

@mikeobrien
Created August 7, 2014 19:57
Show Gist options
  • Save mikeobrien/fcf274e1853d922ef97c to your computer and use it in GitHub Desktop.
Save mikeobrien/fcf274e1853d922ef97c to your computer and use it in GitHub Desktop.
Model of request/response data
{
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