ShoppingApp/Weifer.ShoppingApp.API/Models/CustomerDto.cs
2024-02-25 13:22:48 +01:00

12 lines
311 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; }
}
}