12 lines
307 B
C#
12 lines
307 B
C#
namespace RodionovLibrary.NonVisualComponents.HelperModels
|
|
{
|
|
public class WordLongTextInfo
|
|
{
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
public string[] Paragraphs { get; set; } = Array.Empty<string>();
|
|
}
|
|
}
|