31 lines
781 B
C#
31 lines
781 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace UtilLib
|
|
{
|
|
public class ProofreadResult
|
|
{
|
|
public object AbnormalCount { get; set; }
|
|
public List<Correct> CorrectedSet { get; set; }
|
|
public object History { get; set; }
|
|
|
|
/*
|
|
"id": 1326,
|
|
"isBlackWord": true,
|
|
"isOrigin": 2,
|
|
"isWhiteWord": true,
|
|
"name": "失业在家的日子-最新",
|
|
"status": 3
|
|
*/
|
|
public int Id { get; set; }
|
|
public bool IsBlackWord { get; set; }
|
|
public int IsOrigin { get; set; }
|
|
public bool IsWhiteWord { get; set; }
|
|
public int Status { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
}
|