22 lines
489 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AIProofread
{
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).ToLower().Replace("-", "");
this.Text = text;
}
}
}