From 48ec0e2439848e97c90442d1a4e169c3bbf2655b Mon Sep 17 00:00:00 2001 From: mborzyszkowski Date: Mon, 17 Aug 2020 18:01:45 +0200 Subject: [PATCH] Rejection reason added to Document --- src/InternshipSystem.Core/Entity/Document.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/InternshipSystem.Core/Entity/Document.cs b/src/InternshipSystem.Core/Entity/Document.cs index 8e7ed74..3cda75c 100644 --- a/src/InternshipSystem.Core/Entity/Document.cs +++ b/src/InternshipSystem.Core/Entity/Document.cs @@ -9,5 +9,6 @@ namespace InternshipSystem.Core public byte[] Scan { get; set; } public DocumentType Type { get; set; } public DocumentState State { get; set; } + public string RejectionReason { get; set; } } } \ No newline at end of file