using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class EpanetFileExLogicDto: EpanetFileLogicDto
{
///
///
///
public EpanetFileExLogicDto() { }
///
///
///
public EpanetFileExLogicDto(Model.EpanetFile rhs) : base(rhs)
{
this.Settings = Model.EpanetFile.FileSettingsModel.ToModel(rhs.Settings);
}
///
/// 设置
///
public Model.EpanetFile.FileSettingsModel Settings { get; set; }
}
}