Skip to content

Instantly share code, notes, and snippets.

@milannankov
Created December 24, 2018 07:49
Show Gist options
  • Save milannankov/24c91a19e0c2211f331ceb9cb73c2190 to your computer and use it in GitHub Desktop.
Save milannankov/24c91a19e0c2211f331ceb9cb73c2190 to your computer and use it in GitHub Desktop.
domain-models-1
public class BankAccount
{
public string Id { get; set; }
public decimal Balance { get; set }
public string Currency { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment