mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 14:54:11 +00:00
10 lines
No EOL
284 B
C#
10 lines
No EOL
284 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Roadie.Api.Models
|
|
{
|
|
public class ResetPasswordModel : LoginModel
|
|
{
|
|
[Required] [Compare("Password")] public string PasswordConfirmation { get; set; }
|
|
[Required] public string Token { get; set; }
|
|
}
|
|
} |