aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/Data/Results/ErrorResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/Data/Results/ErrorResult.cs')
-rw-r--r--server/src/Data/Results/ErrorResult.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/server/src/Data/Results/ErrorResult.cs b/server/src/Data/Results/ErrorResult.cs
deleted file mode 100644
index fd2fd6a..0000000
--- a/server/src/Data/Results/ErrorResult.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-namespace IOL.GreatOffice.Api.Data.Results;
-
-public class ErrorResult
-{
- public ErrorResult(string title = default, string text = default) {
- Title = title;
- Text = text;
- }
-
- public string Title { get; set; }
- public string Text { get; set; }
-}