38 lines
914 B
C#
38 lines
914 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace MonitoringTechnology.Common
|
|||
|
|
{
|
|||
|
|
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(); }
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|