mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 09:18:08 +00:00
8 lines
269 B
C#
8 lines
269 B
C#
using FluentValidation.Attributes;
|
|
namespace PodNoms.Api.Models.ViewModels {
|
|
[Validator(typeof(CredentialsViewModelValidator))]
|
|
public class CredentialsViewModel {
|
|
public string UserName { get; set; }
|
|
public string Password { get; set; }
|
|
}
|
|
} |