Skip to content

Instantly share code, notes, and snippets.

@micklaw
Created June 25, 2015 22:15
Show Gist options
  • Save micklaw/6bc6c58da12ddc906d69 to your computer and use it in GitHub Desktop.
Save micklaw/6bc6c58da12ddc906d69 to your computer and use it in GitHub Desktop.
Control & Editor Grid
public class Control
{
public object value { get; set; }
public virtual object ConvertedValue { get; set; }
public Editor editor { get; set; }
}
public class Editor
{
public string name { get; set; }
public string alias { get; set; }
public string view { get; set; }
public string render { get; set; }
public string icon { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment