sharee.bike-App/TINKLib/Model/Connector/FilterHelper.cs

20 lines
613 B
C#
Raw Normal View History

2021-05-13 20:03:07 +02:00
namespace TINK.Model.Connector
{
public static class FilterHelper
{
/// <summary> Holds the Konrad group (city bikes).</summary>
2021-11-07 21:28:13 +01:00
/// <remarks>
/// Was "Konrad" up to version 3.0.258.
/// Specified first: "KN300001" (RG).
/// </remarks>
public const string FILTERKONRAD = "300101";
2021-05-13 20:03:07 +02:00
/// <summary> Holds the tink group (Lastenräder).</summary>
2021-11-07 21:28:13 +01:00
/// <remarks>
/// Was "TINK" up to version 3.0.258.
/// Specified first: "KN300029" (RG).
/// </remarks>
2021-11-14 23:27:29 +01:00
public const string FILTERTINKGENERAL = "300103";
2021-05-13 20:03:07 +02:00
}
}