StoreWebApi: CustomerDTO.cs
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading.Tasks; | |
namespace StoreWebApi.DTOs | |
{ | |
public class CustomerDTO | |
{ | |
public int Id { get; set; } | |
//public string Nombre { get; set; } | |
public string FirstName { get; set; } | |
public string LastName { get; set; } | |
public string UserName { get; set; } | |
public string Password { get; set; } | |
public List<CustomerOrderDTO> CustomerOrder { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment