From 3a37e0839aaa627f22a16a3fa59bdfa37fd8dedc Mon Sep 17 00:00:00 2001 From: pavelbannov Date: Wed, 12 Aug 2020 17:34:54 +0300 Subject: [PATCH] Files: fix FileShareLink --- products/ASC.Files/Core/Model/FileShareWrapper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/products/ASC.Files/Core/Model/FileShareWrapper.cs b/products/ASC.Files/Core/Model/FileShareWrapper.cs index 6994188c15..a01c7dc546 100644 --- a/products/ASC.Files/Core/Model/FileShareWrapper.cs +++ b/products/ASC.Files/Core/Model/FileShareWrapper.cs @@ -85,11 +85,11 @@ namespace ASC.Api.Documents { /// /// - public Guid Id; + public Guid Id { get; set; } /// /// - public string ShareLink; + public string ShareLink { get; set; } } public class FileShareWrapperHelper {