using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using 垂直剖面动态观测系统.Common; namespace 垂直剖面动态观测系统.Model { public class FileModel : NotifyBase { //文件名称 private string _file_NameyVar; public string File_Name { get { return _file_NameyVar; } set { _file_NameyVar = value; this.DoNotify(); } } //文件日期 private DateTime _file_Time = System.DateTime.Now; public DateTime File_Time { get { return _file_Time; } set { _file_Time = value; this.DoNotify(); } } //文件日期 private string _file_Path = @"D:\垂直剖面浮标文件\"; public string File_Path { get { return _file_Path; } set { _file_Path = value; this.DoNotify(); } } } }