0
0
RhSolutions-Api/RhSolutions.QueryModifiers/BlackPipeQueryModifier.cs

14 lines
414 B
C#
Raw Normal View History

2023-10-10 22:26:16 +03:00
namespace RhSolutions.QueryModifiers;
public class BlackPipeQueryModifier : PipeQueryModifier
{
protected override string diameterPattern => @"([\b\D]|^)(?<Diameter>16|20|25)([\b\D]|$)";
protected override string pipeName => "Black";
protected override Dictionary<string, string> diameterNames => new()
{
["16"] = "16х2,2",
["20"] = "20х2,8",
["25"] = "25х3,5"
};
}