Created
August 28, 2012 23:16
-
-
Save emiaj/3505212 to your computer and use it in GitHub Desktop.
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
| using ALS.Validation.Ajax; | |
| using FubuMVC.Core.Ajax; | |
| using FubuMVC.Core.Security; | |
| using HelloWorld.Handlers.Home; | |
| using HelloWorld.Services; | |
| namespace HelloWorld.Handlers.Account | |
| { | |
| // ... | |
| public class LogOnModel : IHaveValidationPreview | |
| { | |
| public string UserName { get; set; } | |
| public string Password { get; set; } | |
| public bool RememberMe { get; set; } | |
| // public string Error { get; set; } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment