diff options
author | crupest <crupest@outlook.com> | 2019-04-22 17:03:07 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-04-22 17:03:07 +0800 |
commit | 45c09ace4acee4df9c860395fb7261adb09bc914 (patch) | |
tree | c5db45281fd18bd113d1652cf104867db276cb1d /Timeline/Configs | |
parent | 80d686a8b875cce854e4291cbe4a53e7a03e3eff (diff) | |
download | timeline-45c09ace4acee4df9c860395fb7261adb09bc914.tar.gz timeline-45c09ace4acee4df9c860395fb7261adb09bc914.tar.bz2 timeline-45c09ace4acee4df9c860395fb7261adb09bc914.zip |
Add Tencent COS.
Diffstat (limited to 'Timeline/Configs')
-rw-r--r-- | Timeline/Configs/TencentCosConfig.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Timeline/Configs/TencentCosConfig.cs b/Timeline/Configs/TencentCosConfig.cs new file mode 100644 index 00000000..c41669f1 --- /dev/null +++ b/Timeline/Configs/TencentCosConfig.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +namespace Timeline.Configs +{ + public class TencentCosConfig + { + public string AppId { get; set; } + public string Region { get; set; } + public string SecretId { get; set; } + public string SecretKey { get; set; } + } +} |