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

12 lines
311 B
C#
Raw 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; }
}
}