namespace ComponentsView { public class DocumentSymple { public string FileUrl { get; set; } = string.Empty; public string FileName { get; set; } = string.Empty; public string[] Text { get; set; } public DocumentSymple(string fileUrl, string fileName, string[] text) { FileUrl = fileUrl; FileName = fileName; Text = text; } } }