ConfigViewModel.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace SuperCms.Models
  6. {
  7. public class ConfigViewModel
  8. {
  9. public String page { get; set; }
  10. public String totalPage { get; set; }
  11. public String tableType { get; set; }
  12. public BotStructures bots { get; set; }
  13. public ScheduleStructures schedules { get; set; }
  14. public GroupStructures groups { get; set; }
  15. public Configs configs { get; set; }
  16. public SendMails sendMails { get; set; }
  17. //public ConnConfigs connConfigs { get; set; }
  18. // editing
  19. public BotStructure bot { get; set; }
  20. public ScheduleStructure schedule { get; set; }
  21. public GroupStructure group { get; set; }
  22. public Config config { get; set; }
  23. public SendMail sendMail { get; set; }
  24. //public ConnConfig connConfig { get; set; }
  25. // for send mail
  26. public ConnTelcos telcos { get; set; }
  27. public ConnCompanies companies { get; set; }
  28. public ConnTelco telco { get; set; }
  29. public ConnCompany company { get; set; }
  30. public ConnConfigs services { get; set; }
  31. public ConnConfig service { get; set; }
  32. }
  33. }