SuperDesign/Source/开发辅助工具/Manager/FTP/FtpInfo.cs
zilinsoft 993f1ca1a9 ### 2024-12-20 星期五更新
------
#### SuperDesign    V3.0.2412.2001
- *.[新增]新增程序更新日志设置和自动发布功能。
- *.[修复]修复Post数据格式不正确时双击文本框会导致软件闪退的BUG。
2024-12-20 08:15:19 +08:00

25 lines
597 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
#pragma warning disable CA2227 // 集合属性应为只读
namespace FTPop
{
/// <summary>
/// 远程文件信息
/// </summary>
public class RemoteFileInfo
{
public string Name { get; set; }
public string FullName { get; set; }
public long Length { get; set; }
public DateTime LastWriteTime { get; set; }
public bool IsDirectory { get; set; }
public override string ToString()
{
return FullName;
}
}
}