KOP-PIbd-32-Katysheva-N-E/ComponentsLibrary/DocumentSymple.cs
2024-09-30 23:54:03 +04:00

17 lines
356 B
C#

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;
}
}
}