mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 09:18:08 +00:00
9 lines
222 B
C#
9 lines
222 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace PodNoms.Api.Models.ViewModels {
|
|
public class ForgotPasswordViewModel {
|
|
[Required]
|
|
[EmailAddress]
|
|
public string Email { get; set; }
|
|
}
|
|
} |