ai_office_plugin/AIProofread/Model/CommonsenseDetectionItem.cs
2025-01-02 17:07:50 +08:00

32 lines
728 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 enum CommonsenseDetectionType
{
All = 1,
Paragraph = 2
}
public class CommonsenseDetectionItem
{
[JsonProperty("id")]
public int Id { get; set; }
[JsonProperty("type")]
public CommonsenseDetectionType Type { get; set; }
[JsonProperty("summary")]
public string Summary { get; set; }
[JsonProperty("location")]
public string Location { get; set; }
[JsonProperty("result_content")]
public string ResultContent { get; set; }
}
}