ai_office_plugin/AIProofread/Model/DocumentContent.cs
callmeyan 089e0bc64a 更新数据交互流程;
优化框架架构;
调整数据结构;
2024-11-05 13:40:39 +08:00

22 lines
470 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AIProofread.Model
{
public class DocumentContent
{
[JsonProperty("origin")]
public string[] OriginCut { get; set; }
[JsonProperty("trim_cut")]
public string[] TrimCut { get; set; }
[JsonProperty("paragraphs")]
public string[] Paragraphs { get; set; }
}
}