aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Web/Models
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-05-06 18:29:43 +0300
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-05-06 18:29:43 +0300
commit53921ccea49bd8a7840d5bbc71c57c8691ed92bf (patch)
treed5a867425bd4f97fc86d6d51119bd4da2a0f3c1f /ExamTemplate/Web/Models
parent9000f940c89e1cfa35f959f2aefd7b748eddc1ce (diff)
downloadit-kariera-exam-template-53921ccea49bd8a7840d5bbc71c57c8691ed92bf.tar
it-kariera-exam-template-53921ccea49bd8a7840d5bbc71c57c8691ed92bf.tar.gz
it-kariera-exam-template-53921ccea49bd8a7840d5bbc71c57c8691ed92bf.zip
Removed unnecessary usings, space identation got updated to tab identation and added authentication in Startup.cs
Diffstat (limited to 'ExamTemplate/Web/Models')
-rw-r--r--ExamTemplate/Web/Models/ErrorViewModel.cs12
1 files changed, 5 insertions, 7 deletions
diff --git a/ExamTemplate/Web/Models/ErrorViewModel.cs b/ExamTemplate/Web/Models/ErrorViewModel.cs
index f603890..bd01707 100644
--- a/ExamTemplate/Web/Models/ErrorViewModel.cs
+++ b/ExamTemplate/Web/Models/ErrorViewModel.cs
@@ -1,11 +1,9 @@
-using System;
-
namespace Web.Models
{
- public class ErrorViewModel
- {
- public string RequestId { get; set; }
+ public class ErrorViewModel
+ {
+ public string RequestId { get; set; }
- public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
- }
+ public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
+ }
}