26 lines
496 B
C#
26 lines
496 B
C#
namespace zero.Core
|
|
{
|
|
public static class Constants
|
|
{
|
|
public static class Database
|
|
{
|
|
public const string SharedAppId = "shared";
|
|
|
|
public const string CollectionPrefix = "zero.";
|
|
}
|
|
|
|
public static class Sections
|
|
{
|
|
public const string Dashboard = "dashboard";
|
|
|
|
public const string Pages = "pages";
|
|
|
|
public const string Lists = "lists";
|
|
|
|
public const string Media = "media";
|
|
|
|
public const string Settings = "settings";
|
|
}
|
|
}
|
|
}
|