using IStation.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 添加Dma点位映射
///
public class AddDmaSiteMappingInput
{
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// Dma点位标识
///
public long DmaSiteID { get; set; }
///
/// Dma分区标识
///
public long DmaAreaID { get; set; }
///
/// 方向
///
public eDmaDirection Direction { get; set; }
}
}