ShoppingApp/Weifer.ShoppingApp.API/Models/CustomerDto.cs
marcus 7e14d8d6ae adds working login
adds working customer creation
2024-02-25 22:59:50 +01:00

18 lines
448 B
C#

namespace Weifer.ShoppingApp.API.Models
{
public class CustomerDto
{
public Guid CustomerId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public string Password { get; set; }
}
public class CustomerCredentials
{
public string Email { get; set; }
public string Password { get; set; }
}
}