Skip to content

Instantly share code, notes, and snippets.

@CristianoRC
Created June 2, 2019 12:03
Show Gist options
  • Save CristianoRC/0082cac486f007d996afb4eede7f4b5c to your computer and use it in GitHub Desktop.
Save CristianoRC/0082cac486f007d996afb4eede7f4b5c to your computer and use it in GitHub Desktop.
public class Real
{
public Real(decimal valor)
{
Valor = valor;
Nome = "Real brasileiro";
Codigo = "BRL";
}
public string Nome { get; private set; }
public string Codigo { get; private set; }
public decimal Valor { get; private set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment