using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AutoPekage
{
public class SettingsDao
{
public int Id { get; set; }
///
/// 默认打包文件名
///
public string DefaultFileName { get; set; }
///
/// 最后一次打包路径
///
public string LastPath { get; set; }
///
/// 是否勾选发送邮件
///
public bool SendMail { get; set; }
///
/// 是否询问自动加载temp目录的文件
///
public bool AskAutoLoadFile { get; set; }
///
/// 是否自动加载temp目录文件
/// 1:加载文件
/// 0:不加载文件
///
public int AutoLoadFile { get; set; }
///
/// 询问是否自动删除temp目录文件
///
public bool AskAutoDeleteFile { get; set; }
///
/// 是否自动删除temp目录文件
/// 1:删除文件
/// 0:不删除文件
///
public int AutoDeleteFile { get; set; }
///
/// 邮件标题模式
/// 1:自定义标题
/// 0:使用文件名作为标题
///
public int TitleModel { get; set; }
///
/// 邮件标题
///
public string Title { get; set; }
}
}