blob: 6d10436c2e2916f9628e4db00e6fa21c82cf082a (
plain)
1
2
3
4
5
6
7
8
9
10
|
namespace Timeline.Configs
{
public class QCloudCosConfig
{
public string AppId { get; set; }
public string Region { get; set; }
public string SecretId { get; set; }
public string SecretKey { get; set; }
}
}
|