58 lines
1.3 KiB
C#
58 lines
1.3 KiB
C#
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<FTPModel> ftplist;
|
|
|
|
/// <summary>
|
|
/// FTP文件目录
|
|
/// </summary>
|
|
public List<FTPModel> FTPList
|
|
{
|
|
get { return ftplist; }
|
|
set { ftplist = value; this.DoNotify(); }
|
|
}
|
|
|
|
private List<FTPModel> locallist;
|
|
|
|
/// <summary>
|
|
/// 本地文件目录
|
|
/// </summary>
|
|
public List<FTPModel> LocalList
|
|
{
|
|
get { return locallist; }
|
|
set { locallist = value; this.DoNotify(); }
|
|
}
|
|
|
|
private string datagrid1path;
|
|
|
|
/// <summary>
|
|
/// 实时路径
|
|
/// </summary>
|
|
public string datagrid1Path
|
|
{
|
|
get { return datagrid1path; }
|
|
set { datagrid1path = value; this.DoNotify(); }
|
|
}
|
|
|
|
private string datagrid2path;
|
|
|
|
/// <summary>
|
|
/// 本地文件保存路径
|
|
/// </summary>
|
|
public string datagrid2Path
|
|
{
|
|
get { return datagrid2path; }
|
|
set { datagrid2path = value; this.DoNotify(); }
|
|
}
|
|
}
|
|
}
|