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

17 lines
428 B
C#
Raw Normal View History

2024-10-28 20:23:38 +04:00
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;
}
}
}