CurrencyExchangeRateDto.cs 545 B

1234567891011121314151617
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. namespace ShwasherSys.BasicInfo.Dto
  5. {
  6. [AutoMapTo(typeof(CurrencyExchangeRate)),AutoMapFrom(typeof(CurrencyExchangeRate))]
  7. public class CurrencyExchangeRateDto: EntityDto<int>
  8. {
  9. public string FromCurrencyId { get; set; }
  10. public string ToCurrencyId { get; set; }
  11. public decimal? ExchangeRate { get; set; }
  12. public DateTime? TimeCreated { get; set; }
  13. public DateTime? TimeLastMod { get; set; }
  14. public string UserIDLastMod { get; set; }
  15. }
  16. }