0
0
RhSolutions-Api/RhSolutions.Api/Services/PinkPipeQueryModifier.cs

15 lines
360 B
C#

namespace RhSolutions.Api.Services
{
public class PinkPipeQueryModifier : PipeQueryModifier
{
protected override string pipeName => "Pink+";
protected override Dictionary<string, string> makeUpNames => new()
{
["бухт"] = "бухта",
["штанг"] = "прямые отрезки",
["отр"] = "прямые отрезки"
};
}
}