-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDemoStringConstants.cs
More file actions
50 lines (42 loc) · 2.7 KB
/
DemoStringConstants.cs
File metadata and controls
50 lines (42 loc) · 2.7 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
namespace BlazorExpress.ChartJS.Demo.RCL;
public static class DemoStringConstants
{
#region Fields and Constants
public const string NugetPackageName = "BlazorExpress.ChartJS";
public const string NugetPackageDisplayName = "BlazorExpress ChartJS";
public const string PageTitle_Suffix = " | BlazorExpress ChartJS: An enterprise-grade open-source component library from the Blazor Express team.";
public const string Nullable = "Nullable";
public const string PropertyTypeNameInt16 = "Int16";
public const string PropertyTypeNameInt32 = "Int32";
public const string PropertyTypeNameInt64 = "Int64";
public const string PropertyTypeNameChar = "Char";
public const string PropertyTypeNameStringComparison = "StringComparison";
public const string PropertyTypeNameString = "String";
public const string PropertyTypeNameSingle = "Single"; // float
public const string PropertyTypeNameDecimal = "Decimal";
public const string PropertyTypeNameDouble = "Double";
public const string PropertyTypeNameDateOnly = "DateOnly";
public const string PropertyTypeNameDateTime = "DateTime";
public const string PropertyTypeNameBoolean = "Boolean";
public const string PropertyTypeNameEnum = "Enum";
public const string PropertyTypeNameGuid = "Guid";
public const string PropertyTypeNameInt16CSharpTypeKeyword = "short";
public const string PropertyTypeNameInt32CSharpTypeKeyword = "int";
public const string PropertyTypeNameInt64CSharpTypeKeyword = "long";
public const string PropertyTypeNameCharCSharpTypeKeyword = "char";
public const string PropertyTypeNameStringComparisonCSharpTypeKeyword = "StringComparison";
public const string PropertyTypeNameStringCSharpTypeKeyword = "string";
public const string PropertyTypeNameSingleCSharpTypeKeyword = "float";
public const string PropertyTypeNameDecimalCSharpTypeKeyword = "decimal";
public const string PropertyTypeNameDoubleCSharpTypeKeyword = "double";
public const string PropertyTypeNameDateOnlyCSharpTypeKeyword = "DateOnly";
public const string PropertyTypeNameDateTimeCSharpTypeKeyword = "DateTime";
public const string PropertyTypeNameBooleanCSharpTypeKeyword = "bool";
public const string PropertyTypeNameEnumCSharpTypeKeyword = "enum";
public const string PropertyTypeNameGuidCSharpTypeKeyword = "Guid";
public const string StaticAssets_RootPath = "_content/BlazorExpress.ChartJS.Demo.RCL";
public const string StaticAssets_Icons_Path = StaticAssets_RootPath + "/icons";
public const string StaticAssets_Icons_Logo_png = StaticAssets_Icons_Path + "/logo.png";
public const string StaticAssets_Images_Path = StaticAssets_RootPath + "/images";
#endregion
}