mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 17:28:43 +00:00
Basic re-auth framework in place
This commit is contained in:
8
server/Models/ViewModels/CredentialsViewModel.cs
Normal file
8
server/Models/ViewModels/CredentialsViewModel.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using FluentValidation.Attributes;
|
||||
namespace PodNoms.Api.Models.ViewModels {
|
||||
[Validator(typeof(CredentialsViewModelValidator))]
|
||||
public class CredentialsViewModel {
|
||||
public string UserName { get; set; }
|
||||
public string Password { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user