KOP-PIbd-32-Katysheva-N-E/ComponentsLibrary/DocumentSymple.cs

17 lines
356 B
C#
Raw Normal View History

2024-09-30 22:43:40 +04:00
namespace ComponentsView
{
2024-09-30 23:54:03 +04:00
public class DocumentSymple
2024-09-30 22:43:40 +04:00
{
public string FileUrl { get; set; } = string.Empty;
public string FileName { get; set; } = string.Empty;
public string[] Text { get; set; }
2024-09-30 23:54:03 +04:00
public DocumentSymple(string fileUrl, string fileName, string[] text)
2024-09-30 22:43:40 +04:00
{
FileUrl = fileUrl;
FileName = fileName;
Text = text;
}
}
}