Skip to content

Instantly share code, notes, and snippets.

@CraigCav
Created November 22, 2011 02:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CraigCav/1384709 to your computer and use it in GitHub Desktop.
Save CraigCav/1384709 to your computer and use it in GitHub Desktop.
public class CreateBookInputModel
{
public String Title { get; set; }
public String Genre { get; set; }
public String Description_BigText { get; set; }
public BookStatus BookStatus { get; set; }
public IList<string> Authors { get; set; }
public HttpPostedFileBase Image { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment