Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created October 7, 2018 17:54
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/8148b78c2c31b3cde7414eb1ef3ef83c to your computer and use it in GitHub Desktop.
Save icebeam7/8148b78c2c31b3cde7414eb1ef3ef83c to your computer and use it in GitHub Desktop.
StoreWebApi: EmployeeDTO.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace StoreWebApi.DTOs
{
public class EmployeeDTO
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment