Currency.cs 495 B

12345678910111213141516171819202122
  1. using System;
  2. namespace Dfs.WayneChina.PosModelMini
  3. {
  4. public class Currency
  5. {
  6. /// <summary>
  7. /// Unique id of the currency
  8. /// </summary>
  9. public Guid Id { get; set; }
  10. /// <summary>
  11. /// ISO name of the currency
  12. /// </summary>
  13. public string Name { get; set; }
  14. /// <summary>
  15. /// When the currency is created in the system.
  16. /// </summary>
  17. public DateTime? CreatedTime { get; set; }
  18. }
  19. }