using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace SuperCms.Models { public class ConfigViewModel { public String page { get; set; } public String totalPage { get; set; } public String tableType { get; set; } public BotStructures bots { get; set; } public ScheduleStructures schedules { get; set; } public GroupStructures groups { get; set; } public Configs configs { get; set; } public SendMails sendMails { get; set; } //public ConnConfigs connConfigs { get; set; } // editing public BotStructure bot { get; set; } public ScheduleStructure schedule { get; set; } public GroupStructure group { get; set; } public Config config { get; set; } public SendMail sendMail { get; set; } //public ConnConfig connConfig { get; set; } // for send mail public ConnTelcos telcos { get; set; } public ConnCompanies companies { get; set; } public ConnTelco telco { get; set; } public ConnCompany company { get; set; } public ConnConfigs services { get; set; } public ConnConfig service { get; set; } } }