Core.Thalos.Service.API/Core.Cerberos.External/GatewayConfigurations/GatewayConfiguration.cs
Sergio Matias Urquin 7d760b589e Add project files.
2025-04-29 18:56:29 -06:00

20 lines
468 B
C#

using Core.Blueprint.External;
namespace Core.Cerberos.External.GatewayConfigurations
{
public record GatewayConfiguration
{
public GatewayConfiguration()
{
CerberosService = new CerberosServiceAPI();
}
public CerberosServiceAPI CerberosService { get; set; }
}
public record CerberosServiceAPI
{
public string Channel { get; set; }
public BaseEndpoint Endpoint { get; set; }
}
}