mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
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.
39 lines
1.1 KiB
39 lines
1.1 KiB
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 SlugAlreadyExists = "CmsKit:Blog:0001";
|
|
}
|
|
|
|
public static class BlogPosts
|
|
{
|
|
public const string SlugAlreadyExist = "CmsKit:BlogPost:0001";
|
|
}
|
|
|
|
public static class Comments
|
|
{
|
|
public const string EntityNotCommentable = "CmsKit:Comments:0001";
|
|
}
|
|
|
|
public static class MediaDescriptors
|
|
{
|
|
public const string InvalidName = "CmsKit:Media:0001";
|
|
public const string EntityTypeDoesntExist = "CmsKit:Media:0002";
|
|
}
|
|
}
|
|
}
|
|
|