You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
778 B
31 lines
778 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static System.Net.WebRequestMethods;
|
|
|
|
namespace HybirdFrameworkEntity
|
|
{
|
|
public class CMD1407
|
|
{
|
|
/// <summary>
|
|
/// 预留
|
|
/// </summary>
|
|
public ushort Reserved1 { get; set; }
|
|
/// <summary>
|
|
/// 预留
|
|
/// </summary>
|
|
public ushort Reserved2 { get; set; }
|
|
/// <summary>
|
|
/// 结果
|
|
/// <para>0:成功</para>
|
|
/// <para>1:ftp 地址连接失败</para>
|
|
/// <para>2:ftp 服务登录失败</para>
|
|
/// <para>3:目录无权限</para>
|
|
/// <para>4:其他错误</para>
|
|
/// </summary>
|
|
public byte Result { get; set; }
|
|
}
|
|
}
|