namespace HStation.Dto
{
///
///
///
public class XhsProjectExtensionsDto : XhsProjectDto
{
///
///
///
public XhsProjectExtensionsDto() { }
///
///
///
public XhsProjectExtensionsDto(Model.XhsProject project, List siteList) : base(project)
{
this.SiteList = siteList?.Select(x => new XhsProjectSiteDto(x)).ToList();
}
///
/// 站点列表
///
public List SiteList { get; set; }
}
}