namespace MyOffice.Web.Models.Currency; public class CurrencyViewModel: BaseViewModel { public string Id { get; set; } = null!; public string Code { get; set; } = null!; public string Symbol { get; set; } = null!; public string Name { get; set; } = null!; public string ShortName { get; set; } = null!; public decimal? Rate { get; set; } public int? Quantity { get; set; } public DateTime? RateDate { get; set; } public bool IsPrimary { get; set; } }