· 7 years ago · Mar 08, 2018, 11:24 PM
1namespace CommonTypes.Settings
2{
3 public class AWSSettings
4 {
5 public StorageSettings Storage { get; set; }
6
7 public class StorageSettings
8 {
9 public string User { get; set; }
10 public string AccessKey { get; set; }
11 public string SecretKey { get; set; }
12 public string PrimaryBucket { get; set; }
13 public string AlternateBucket { get; set; }
14 public string Region { get; set; }
15
16 }
17 }
18}