18 lines
436 B
C#
18 lines
436 B
C#
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<MyChannel> channels { get; set; }
|
|
}
|
|
public class MyChannel
|
|
{
|
|
public int minChannel { get; set; }
|
|
public int maxChannel { get; set; }
|
|
}
|
|
}
|