Created
June 25, 2015 22:15
-
-
Save micklaw/6bc6c58da12ddc906d69 to your computer and use it in GitHub Desktop.
Control & Editor Grid
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 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