PlayerManagement/Application/Errors/VsDuelParticipantErrors.cs
Tomasi - Developing 35e83c4735 beta 0.0.3
2024-11-26 08:43:01 +01:00

9 lines
363 B
C#

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