feat 网关继承微服务Swagger
This commit is contained in:
@ -0,0 +1,14 @@
|
||||
using KonSoft.InternalGateway.Aggregations.Base;
|
||||
|
||||
namespace KonSoft.InternalGateway.Aggregations.Localization;
|
||||
|
||||
public class LocalizationRequest : IRequestInput
|
||||
{
|
||||
public Dictionary<string, string> Endpoints { get; } = new();
|
||||
public string CultureName { get; set; }
|
||||
|
||||
public LocalizationRequest(string cultureName)
|
||||
{
|
||||
CultureName = cultureName;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user