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