-
Notifications
You must be signed in to change notification settings - Fork 29
/
PropertyAlias.cs
25 lines (25 loc) · 1.17 KB
/
PropertyAlias.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
namespace UmbracoNineDemoSite.Core.Features.Shared.Constants
{
/// <summary>
/// Please remain in alphabetical order
/// </summary>
public static class PropertyAlias
{
public const string BackgroundImage = "backgroundImage";
public const string Blocks = "blocks";
public const string BodyText = "bodyText";
public const string CallToActionButtonLabel = "callToActionButtonLabel";
public const string CallToActionDescription = "callToActionDescription";
public const string CallToActionHeader = "callToActionHeader";
public const string CallToActionLabel = "callToActionLabel";
public const string CallToActionUrl = "callToActionUrl";
public const string FooterText = "footerText";
public const string Heading = "heading";
public const string PageTitle = "pageTitle";
public const string Preamble = "preamble";
public const string ProductsContainer = "productsContainer";
public const string NoResultsFoundText = "noResultsFoundText";
public const string TotalResults = "totalResults";
public const string SearchTermText = "searchTermText";
}
}