Tomasi - Developing bfbb030cb2 v. 0.11.0
2025-06-19 11:02:57 +02:00

9 lines
313 B
C#

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