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
351 B

  1. namespace CustomerOnlineRemit.Common.Model
  2. {
  3. public class DynamicModels
  4. {
  5. }
  6. public class DropDownModel : CommonResponse
  7. {
  8. public List<DropDownListModel>? dropDownList { get; set; }
  9. }
  10. public class DropDownListModel
  11. {
  12. public string? Id { get; set; }
  13. public string? Text { get; set; }
  14. }
  15. }