mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
738 B
29 lines
738 B
namespace Volo.CmsKit
|
|
{
|
|
public static class CmsKitErrorCodes
|
|
{
|
|
public static class Tags
|
|
{
|
|
public const string TagAlreadyExist = "CmsKit:Tag:0001";
|
|
public const string EntityNotTaggable = "CmsKit:Tag:0002";
|
|
}
|
|
|
|
public const string ContentAlreadyExist = "CmsKit:0002";
|
|
|
|
public static class Pages
|
|
{
|
|
public const string SlugAlreadyExist = "CmsKit:Page:0001";
|
|
}
|
|
|
|
public static class Blogs
|
|
{
|
|
public const string SlugAlreadyExist = "CmsKit:BlogPost:0001";
|
|
}
|
|
|
|
public static class MediaDescriptors
|
|
{
|
|
public const string InvalidName = "CmsKit:Media:0001";
|
|
}
|
|
}
|
|
}
|