20240301_JSEQ_upperpc/JiangsuEarthquakeNow/JiangsuEarthquake/Models/FTP/FTPLIST.cs
XuMin 3b6c570800 1 经过电控腔测试和升压站测试;
2 解决了后一个通信连接会影响前一个通信连接的问题;
3 测试过程中存在的问题修改;
2024-09-03 16:30:34 +08:00

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(); }
}
}
}