...
Codeblock | ||||
---|---|---|---|---|
| ||||
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CongreeProofReader.Congree { public class CongreeCheckresult { public string ResultXml { get; set; } public IList<Error> Errors { get; set; } public ReportingIList<TermCandidate> ReportingTermCandidates { get; set; } } public classReporting ErrorReporting { public string Id { get; set; } } public class stringError ContextId { get; set; }{ public string TypeId { get; set; } public IList<ErrorDescription>string DescriptionsContextId { get; set; } public IList<Proposal>string ProposalsType { get; set; } public IList<TermCandidate>IList<ErrorDescription> TermCandidatesDescriptions { get; set; } public ReportingIList<Proposal> ReportingProposals { get; set; } } public class ErrorDescription { public string Code { get; set; } public Description Description { get; set; } public IList<ErrorExplanation> Explanation { get; set; } public IList<ErrorExplanationRewrite> ExplanationRewrite { get; set; } } public class Description { public string Header { get; set; } public string Instruction { get; set; } public string Explanation { get; set; } } public class ErrorExplanation { public string Type { get; set; } public string Text { get; set; } } public class ErrorExplanationRewrite { public string Type { get; set; } public string Text { get; set; } } public class Proposal { public string Text { get; set; } public string AdditionalInfo { get; set; } public string BaseTermForm { get; set; } public string ConceptId { get; set; } } public class TermCandidate { public string Id { get; set; } public int ContextId { get; set; } public string Text { get; set; } public string Context { get; set; } public bool IsExists { get; set; } } public class Reporting { public string TotalCheckedWords { get; set; } public string ReleaseLevel { get; set; } public string RelativeReleaseLevel { get; set; } public string SafeReleaseLevel { get; set; } public string SafeReleaseLevelTitle { get; set; } public string AcceptableReleaseLevel { get; set; } public string UnsafeReleaseLevel { get; set; } public string UnsafeReleaseLevelTitle { get; set; } public IList<ReportingByTypes> ReportingByTypes { get; set; } } public class ReportingByTypes { public string Type { get; set; } public string ErrorCount { get; set; } public string Severity { get; set; } public string RelativeSeverity { get; set; } public string Terminology { get; set; } public string Spelling { get; set; } public string Grammar { get; set; } public string Style { get; set; } public string Abbreviation { get; set; } } } |
...