14 lines
376 B
C#
14 lines
376 B
C#
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;
|
|
}
|
|
} |