using System.Collections.Generic; namespace CRM.Core.Model.Map { public class CompanyVirlual { public string companyname { get; set; } public string companycode { get; set; } public string channel { get; set; } public List channels { get; set; } } public class MyChannel { public int minChannel { get; set; } public int maxChannel { get; set; } } }