shopping-assistant-api/ShoppingAssistantApi.Application/Models/Identity/AccessUserModel.cs
2023-09-22 23:02:20 +03:00

10 lines
217 B
C#

namespace ShoppingAssistantApi.Application.Models.Identity;
public class AccessUserModel
{
public string? Email { get; set; }
public string? Phone { get; set; }
public string Password { get; set; }
}