Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

The class CongreeTaskResult is defined as shown below:

Codeblock
languagec#
 public class Result
    {
        public int SkippedCount { get; set; }
        public int ImportedSentences { get; set; }
        public List<SkippedSentence> SkippedSentences { get; set; }
        public string DocumentId { get; set; }
    }

    public class CongreeTaskResult
    {
        public Result Result { get; set; }
    }

    public class SkippedSentence
    {
        public string SentenceText { get; set; }
        public string SkippedReason { get; set; }
    }