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