2026-06-23 19:03:31 +01:00

14 lines
459 B
C#

namespace Solicitors.CacheBuild.SolicitorsDotCom;
internal static class Consts
{
public const string BaseUrl = "https://www.solicitors.com";
public static readonly string[] Locations =
[
"london", "birmingham", "leeds", "manchester", "sheffield", "bradford", "liverpool", "bristol"
];
public const decimal MaxRating = 5.0m;
public const string Name = "Solicitors.com";
public const string IconPath = "/images/logo.svg";
}