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