-
Notifications
You must be signed in to change notification settings - Fork 0
/
Constants.cs
18 lines (17 loc) · 928 Bytes
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Moov2.Orchard.Location
{
public class Constants
{
public const string NameIndexPropertyName = "location-name";
public const string CompanyIndexPropertyName = "location-company";
public const string UnitApartmentIndexPropertyName = "location-unitApartment";
public const string NameOrNumberIndexPropertyName = "location-nameOrNumber";
public const string StreetIndexPropertyName = "location-street";
public const string PostcodeIndexPropertyName = "location-postcode";
public const string TownIndexPropertyName = "location-town";
public const string CountyStateIndexPropertyName = "location-countyState";
public const string CountryIndexPropertyName = "location-country";
public const string LatitudeIndexPropertyName = "location-latitude";
public const string LongitudeIndexPropertyName = "location-longitude";
}
}