15 lines
360 B
C#
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()
|
||
|
{
|
||
|
["бухт"] = "бухта",
|
||
|
["штанг"] = "прямые отрезки",
|
||
|
["отр"] = "прямые отрезки"
|
||
|
};
|
||
|
}
|
||
|
}
|