namespace Admin.Core.Common.Configs
{
///
/// 上传配置
///
public class UploadConfig
{
public AvatarConfig Avatar { get; set; }
public AvatarConfig Document { get; set; }
}
///
/// 头像配置
///
public class AvatarConfig
{
///
/// 路径
///
public string Path { get; set; }
///
/// 请求路径
///
public string RequestPath { get; set; }
///
/// 路径格式
///
public string Format { get; set; }
///
/// 路径日期格式
///
public string DateTimeFormat { get; set; }
///
/// 图片大小 1M = 1024 * 1024
///
public long Size { get; set; }
///
/// 图片格式
///
public string[] ContentType { get; set; }
}
///
/// 文档配置
///
public class DocumentConfig
{
///
/// 路径
///
public string Path { get; set; }
///
/// 请求路径
///
public string RequestPath { get; set; }
///
/// 路径格式
///
public string Format { get; set; }
///
/// 路径日期格式
///
public string DateTimeFormat { get; set; }
///
/// 文件大小 10M = 10 * 1024 * 1024
///
public long Size { get; set; }
///
/// 文件格式
///
public string[] ContentType { get; set; }
}
}