20211010_CZPM_upperpc/垂直剖面动态观测系统/Model/FileModel.cs

39 lines
962 B
C#
Raw Permalink Normal View History

2023-07-27 03:01:29 +00:00
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(); }
}
}
}