marco.pms.api/Marco.Pms.Model/Dtos/ForgotPasswordDto.cs

17 lines
331 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Marco.Pms.Model.Dtos
{
public class ForgotPasswordDto
{
[Required]
[EmailAddress]
public string Email { get; set; }
}
}