Files
KonSoft.Clean/gateways/KonSoft.InternalGateway/Aggregations/ApplicationConfiguration/AppConfigurationRequest.cs

8 lines
249 B
C#

using KonSoft.InternalGateway.Aggregations.Base;
namespace KonSoft.InternalGateway.Aggregations.ApplicationConfiguration;
public class AppConfigurationRequest : IRequestInput
{
public Dictionary<string, string> Endpoints { get; } = new();
}