22 lines
468 B
C#
22 lines
468 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WordAddInTest2024
|
|
{
|
|
public class DocumentText
|
|
{
|
|
public string Hash { get; set; }
|
|
public string Text { get; set; }
|
|
|
|
public DocumentText() { }
|
|
public DocumentText(byte[] hash, string text)
|
|
{
|
|
this.Hash = BitConverter.ToString(hash);
|
|
this.Text = text;
|
|
}
|
|
}
|
|
}
|