Skip to content

Instantly share code, notes, and snippets.

@rafaelrmou
Created October 28, 2015 12:31
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 rafaelrmou/7dc1d84ffa50568ffa69 to your computer and use it in GitHub Desktop.
Save rafaelrmou/7dc1d84ffa50568ffa69 to your computer and use it in GitHub Desktop.
using System;
namespace AppTestForFastMapper
{
/// <summary>
/// Classe de domínio.
/// </summary>
public class Pessoa
{
public int Id { get; set; }
public string Nome { get; set; }
public string Cpf { get; set; }
}
}
using System;
namespace AppTestForFastMapper
{
/// <summary>
/// Classe para representar nosso objeto de transferência.
/// </summary>
public class PessoaDto
{
public string Nome { get; set; }
public string Cpf { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment