17 lines
428 B
C#
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|