namespace CMS.Plugin.PipeLineLems.Domain.Shared;
///
/// 错误编码定义
///
public static class CMSPluginDomainErrorCodes
{
///
/// The prefix
///
private const string Prefix = "CMS.Plugin.PipeLineLems:";
/* You can add your business exception error codes here, as constants */
public const string NameAlreadyExists = Prefix + nameof(NameAlreadyExists);
}