25 lines
531 B
C#
25 lines
531 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace COPWinForms
|
|
{
|
|
public class TextWord
|
|
{
|
|
public string FilePath = string.Empty;
|
|
|
|
public string DocumentTitle = string.Empty;
|
|
|
|
public string[] TextData;
|
|
|
|
public TextWord(string filePath, string documentTitle, string[] textData)
|
|
{
|
|
FilePath = filePath;
|
|
DocumentTitle = documentTitle;
|
|
TextData = textData;
|
|
}
|
|
}
|
|
}
|