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