Skip to content

Instantly share code, notes, and snippets.

@jesulink2514
Created January 21, 2016 05:17
Show Gist options
  • Save jesulink2514/a2af9b3c4345a6491cb6 to your computer and use it in GitHub Desktop.
Save jesulink2514/a2af9b3c4345a6491cb6 to your computer and use it in GitHub Desktop.
Framework Bootstrap
using System.Web.Mvc;
namespace RefactorView.Infraestructure.Html
{
public class FormControl
{
public MvcHtmlString Label { get; set; }
public MvcHtmlString Control { get; set; }
public MvcHtmlString Validation { get; set; }
public string ContainerSize { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment