using Core.Blueprint.External; namespace Core.Thalos.External.GatewayConfigurations { public record GatewayConfiguration { public GatewayConfiguration() { ThalosService = new ThalosServiceAPI(); } public ThalosServiceAPI ThalosService { get; set; } } public record ThalosServiceAPI { public string Channel { get; set; } public BaseEndpoint Endpoint { get; set; } } }