Rob / Application /DTOs /UserDTOs /UserLoginDTO.cs
danylokhodus's picture
Initial clean backend commit
70556b7
Raw
History Blame Contribute Delete
318 Bytes
using System.ComponentModel.DataAnnotations;
namespace Application.DTOs.UserDTOs
{
public class UserLoginDTO
{
public string? Email { get; set; }
public string? Password { get; set; }
public string? googleJwtToken { get; set; }
public string? PhoneNumber { get; set; }
}
}