Core.Thalos.Service.API/Core.Thalos.External/GatewayConfigurations/GatewayConfiguration.cs
2025-05-18 19:23:42 -06:00

20 lines
456 B
C#

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; }
}
}