namespace ComponentsLibrary.entities { public class DocumentSymple { public string FileUrl { get; set; } = string.Empty; public string Title { get; set; } = string.Empty; public string[] Text { get; set; } public DocumentSymple(string fileUrl, string title, string[] text) { FileUrl = fileUrl; Title = title; Text = text; } } }