mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
9 lines
373 B
C#
9 lines
373 B
C#
namespace Application.Errors;
|
|
|
|
public class CustomEventCategoryErrors
|
|
{
|
|
public static readonly Error NotFound = new("Error.CustomEventCategory.NotFound",
|
|
"The custom event category with the specified identifier was not found");
|
|
|
|
public static readonly Error IdConflict = new("Error.CustomEventCategory.IdConflict", "There is a conflict with the id's");
|
|
} |