mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-04 16:49:36 +00:00
17 lines
527 B
C#
17 lines
527 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ShoppingAssistantWebClient.Web.Models.Input;
|
|
|
|
public class LoginInputModel
|
|
{
|
|
[EmailAddress(ErrorMessage = "Invalid email address")]
|
|
public string? Email { get; set; }
|
|
|
|
[Phone(ErrorMessage = "Invalid phone number")]
|
|
public string? Phone { get; set; }
|
|
|
|
[Required(ErrorMessage = "Password is required")]
|
|
public string Password { get; set; }
|
|
|
|
public bool IsEmailOrPhoneProvided => !string.IsNullOrEmpty(Email) || !string.IsNullOrEmpty(Phone);
|
|
} |