namespace Yw.Application
{
///
///
///
public class DmaAreaMapMobileDto
{
///
///
///
public DmaAreaMapMobileDto() { }
///
///
///
public DmaAreaMapMobileDto(Yw.Model.DmaArea rhs)
{
this.DmaAreaID = rhs.ID;
this.Name = rhs.Name;
}
///
/// Dma分区id
///
public long DmaAreaID { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 位置
///
public Yw.Model.Map.Polygon Position { get; set; }
}
}