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.
 
 
 
 
 
 

18 rivejä
403 B

  1. using System.Collections.Generic;
  2. namespace Permission.Service.DTO.ApiModels
  3. {
  4. public class DictDataModel
  5. {
  6. public DictDataModel()
  7. {
  8. Items = new List<SysDictDetailApiViewModel>();
  9. }
  10. public string DictTypeId { get; set; }
  11. public string DictTypeName { get; set; }
  12. public List<SysDictDetailApiViewModel> Items { get; set; }
  13. }
  14. }