· 7 years ago · Mar 15, 2018, 11:32 AM
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace CommonTypes.Settings
6{
7 public class AWSSettings
8 {
9 public PubSubSettings PubSub { get; set; }
10
11 public class PubSubSettings
12 {
13 public string AccessKey { get; set; }
14 public string SecretKey { get; set; }
15 public string QueueBasePath { get; set; }
16 public string QueueIdentifier { get; set; }
17 public Dictionary<string, string> QueueMappings { get; set; }
18 }
19 }
20}