PlayerManagement/Application/Errors/ZombieSiegeErrors.cs
2024-11-28 13:16:41 +01:00

9 lines
347 B
C#

namespace Application.Errors;
public static class ZombieSiegeErrors
{
public static readonly Error NotFound = new("Error.ZombieSiege.NotFound",
"The zombie siege with the specified identifier was not found");
public static readonly Error IdConflict = new("Error.ZombieSiege.IdConflict", "There is a conflict with the id's");
}