using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// /// public class UpdateEpanetFileSettingsInput { /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 设置 /// public Model.EpanetFile.FileSettingsModel Settings { get; set; } } }