· 7 years ago · Mar 20, 2018, 05:56 PM
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace CommonTypes.Settings
6{
7 public class AWSSettings
8 {
9 public NoSQLSettings NoSQL { get; set; }
10
11 public class NoSQLSettings
12 {
13 public string AccessKey { get; set; }
14 public string SecretKey { get; set; }
15 public string Region { get; set; }
16 }
17 }
18}