PlayerManagement/Application/Errors/CustomEventCategoryErrors.cs
Tomasi - Developing 711fb4adaa v 0.9.0
2025-04-23 16:03:41 +02:00

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");
}