KOP-PIbd-32-Katysheva-N-E/ComponentsLibrary/DocumentEntry.cs
2024-09-30 22:43:40 +04:00

17 lines
354 B
C#

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