CurrencyDto.cs 582 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using Abp.AutoMapper;
  4. using Abp.Application.Services.Dto;
  5. using AutoMapper;
  6. namespace ShwasherSys.BasicInfo.Dto
  7. {
  8. [AutoMapTo(typeof(Currency)),AutoMapFrom(typeof(Currency))]
  9. public class CurrencyDto: EntityDto<string>
  10. {
  11. public string CurrencyName { get; set; }
  12. [IgnoreMap]
  13. public List<CurrencyExchangeRate> CurrencyExchangeRates { get; set; }
  14. public DateTime? TimeCreated { get; set; }
  15. public DateTime? TimeLastMod { get; set; }
  16. public string UserIDLastMod { get; set; }
  17. }
  18. }