using JiangsuEarthquake.Common; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiangsuEarthquake.Models.FTP { public class FTPLIST : NotifyBase { private List ftplist; /// /// FTP文件目录 /// public List FTPList { get { return ftplist; } set { ftplist = value; this.DoNotify(); } } private List locallist; /// /// 本地文件目录 /// public List LocalList { get { return locallist; } set { locallist = value; this.DoNotify(); } } private string datagrid1path; /// /// 实时路径 /// public string datagrid1Path { get { return datagrid1path; } set { datagrid1path = value; this.DoNotify(); } } private string datagrid2path; /// /// 本地文件保存路径 /// public string datagrid2Path { get { return datagrid2path; } set { datagrid2path = value; this.DoNotify(); } } } }