diff --git a/IRaCIS.Core.Application/Service/Document/DTO/SystemDocumentViewModel.cs b/IRaCIS.Core.Application/Service/Document/DTO/SystemDocumentViewModel.cs index 2b63a668b..305ea5e7d 100644 --- a/IRaCIS.Core.Application/Service/Document/DTO/SystemDocumentViewModel.cs +++ b/IRaCIS.Core.Application/Service/Document/DTO/SystemDocumentViewModel.cs @@ -107,6 +107,7 @@ namespace IRaCIS.Core.Application.Contracts public Guid? FileTypeId { get; set; } + public string Name { get; set; } = string.Empty; public bool? IsSign { get; set; } diff --git a/IRaCIS.Core.Application/Service/Document/DTO/TrialDocumentViewModel.cs b/IRaCIS.Core.Application/Service/Document/DTO/TrialDocumentViewModel.cs index f1aa90467..be5b6371d 100644 --- a/IRaCIS.Core.Application/Service/Document/DTO/TrialDocumentViewModel.cs +++ b/IRaCIS.Core.Application/Service/Document/DTO/TrialDocumentViewModel.cs @@ -53,6 +53,7 @@ namespace IRaCIS.Core.Application.Contracts public string Name { get; set; } = String.Empty; public string Path { get; set; } = String.Empty; + [MaxLength(250)] public string Description { get; set; } = String.Empty; public bool IsDeleted { get; set; }