You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
466 B

2 years ago
  1. using Entity.Sugar;
  2. using System.Collections.Generic;
  3. namespace Entity.ViewModels
  4. {
  5. public class View_WSM_ExhibitionRules : OTB_WSM_ExhibitionRules
  6. {
  7. public View_WSM_ExhibitionRules()
  8. {
  9. CurrencyName = "";
  10. Files = new List<OTB_SYS_Files>();
  11. }
  12. public List<OTB_SYS_Files> Files { get; set; }
  13. public string CurrencyName { get; set; }
  14. public string CurrencyName_EN { get; set; }
  15. }
  16. }