| 12345678910111213141516171819202122232425 |
- using System.Text.Json.Serialization;
- namespace Quadarax.Application.QLiberace.Common.Configuration
- {
- public class Settings
- {
- [JsonPropertyName("modules")]
- public IList<ModuleConfiguration> Modules { get; set; }
- public Settings()
- {
- Modules = new List<ModuleConfiguration>();
- }
- }
- public class ModuleConfiguration
- {
- [JsonPropertyName("code")]
- public string Code { get; set; }
- [JsonPropertyName("connection-string")]
- public string ConnectionString { get; set; }
- }
- }
|