17 lines
354 B
C#
17 lines
354 B
C#
namespace ComponentsView
|
|
{
|
|
public class DocumentEntry
|
|
{
|
|
public string FileUrl { get; set; } = string.Empty;
|
|
public string FileName { get; set; } = string.Empty;
|
|
public string[] Text { get; set; }
|
|
|
|
public DocumentEntry(string fileUrl, string fileName, string[] text)
|
|
{
|
|
FileUrl = fileUrl;
|
|
FileName = fileName;
|
|
Text = text;
|
|
}
|
|
}
|
|
}
|