25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

DictDataModel.cs 403 B

4 yıl önce
123456789101112131415161718
  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. }