Skip to content

Instantly share code, notes, and snippets.

@jean-lourenco
Created January 30, 2018 11:40
Show Gist options
  • Save jean-lourenco/b91beac1cd81fecea29d92adedce07d7 to your computer and use it in GitHub Desktop.
Save jean-lourenco/b91beac1cd81fecea29d92adedce07d7 to your computer and use it in GitHub Desktop.
DTO de retorno do GET api/v1/CartaoDebito
public class CartaoDebitoDto
{
public long Id { get; set; }
public long CartaoId { get; set; }
public string Nome { get; set; }
public string Documento { get; set; }
public string Email { get; set; }
public DateTime? DataUltimaRecarga { get; set; }
public decimal? ValorUltimaRecarga { get; set; }
public DateTime DataVencimentoUltimaRecarga { get; set; }
public string Status { get; set; }
public string QuatroUltimosDigitos { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment