14 lines
459 B
C#
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";
|
|
} |