KOP-PIbd-32-Katysheva-N-E/ComponentsLibrary/entities/DocumentSymple.cs
2024-10-28 20:23:38 +04:00

17 lines
428 B
C#

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