Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created October 7, 2018 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icebeam7/6f9326bc261e039884ca1e443f17db50 to your computer and use it in GitHub Desktop.
Save icebeam7/6f9326bc261e039884ca1e443f17db50 to your computer and use it in GitHub Desktop.
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