using System; namespace Dfs.WayneChina.PosModelMini { public class Currency { /// <summary> /// Unique id of the currency /// </summary> public Guid Id { get; set; } /// <summary> /// ISO name of the currency /// </summary> public string Name { get; set; } /// <summary> /// When the currency is created in the system. /// </summary> public DateTime? CreatedTime { get; set; } } }