Last active
September 18, 2017 09:51
-
-
Save MoienTajik/a959772d40c6193d5c9cc7c28a4cc5b4 to your computer and use it in GitHub Desktop.
Post class for TinyMCE
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 Post | |
{ | |
public string Title { get; set; } | |
[AllowHtml] | |
[UIHint("tinymce_jquery_full")] | |
public string Description { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment