namespace YLErp.Models
{
///
/// FTP配置
///
public class FtpSettings
{
///
/// 主机
///
public string FtpHost { get; set; }
///
/// 端口
///
public string FtpPort { get; set; }
///
/// 用户
///
public string FtpUser { get; set; }
///
/// 密码
///
public string FtpPwd { get; set; }
///
/// 模式
///
public string FtpMode { get; set; }
///
/// 根目录
///
public string FtpRoot { get; set; }
}
}