ShoppingApp/Weifer.ShoppingApp.API/Models/CustomerDto.cs

18 lines
448 B
C#
Raw Permalink Normal View History

2024-02-25 13:22:48 +01:00
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; }
}
2024-02-25 13:22:48 +01:00
}