Guest User

Untitled

a guest
Jul 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. namespace CoreSystems.Models
  2. {
  3. public class Currency
  4. {
  5. public int Id { get; set; }
  6. public string Name { get; set; }
  7. public string Code { get; set; }
  8.  
  9. public string SomeThing { get; set; }
  10.  
  11. public Currency()
  12. {
  13. Name = "foo";
  14. SomeThing = "bar";
  15. }
  16. }
  17. }
Add Comment
Please, Sign In to add comment