using System.Collections.Generic; using System; namespace WingServerCommon.Config { public class StorageSettings { /// /// 默认云存储服务 /// public StorageServerEnum DefaultStorageServer { get; set; } /// /// 云存储服务分配的 用户id /// public string AppId { get; set; }=string.Empty; /// /// 秘钥 /// public string Sercret { get; set; }=string.Empty; /// /// 存储服务 /// public string CFSServerUrl { get; set; }=string.Empty; /// /// cdn服务 /// public string CDNServerUrl { get; set; }=string.Empty; } /// /// Storage 服务类型 /// public enum StorageServerEnum { //自建云服务 Vinno, //腾讯云服务 Tencent } }