You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
780 B
C#
36 lines
780 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
|
|
namespace Common.UpLoad
|
|
{
|
|
/// <summary>
|
|
/// 七牛云存储配置
|
|
/// </summary>
|
|
public class QiniuConfig
|
|
{
|
|
#region 七牛云存储配置
|
|
/// <summary>
|
|
///七牛AccessKey
|
|
/// </summary>
|
|
public string QiniuAccessKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// 七牛 SecretKey
|
|
/// </summary>
|
|
public string QiniuSecretKey { get; set; }
|
|
/// <summary>
|
|
/// 七牛上传的空间
|
|
/// </summary>
|
|
public string Qiniubucket { get; set; }
|
|
|
|
/// <summary>
|
|
/// 七牛的访问地址域名
|
|
/// </summary>
|
|
public string QiniuUrl { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|