GetTextCensorJobResult.cs 494 B

12345678910111213141516171819202122
  1. using System;
  2. using System.IO;
  3. using System.Collections.Generic;
  4. using COSXML.Model.Tag;
  5. using COSXML.Transfer;
  6. namespace COSXML.Model.CI
  7. {
  8. /// <summary>
  9. /// 文本审核结果
  10. /// </summary>
  11. public sealed class GetTextCensorJobResult : CosDataResult<TextCensorResult>
  12. {
  13. /// <summary>
  14. /// 文本审核结果
  15. /// </summary>
  16. /// <value></value>
  17. public TextCensorResult resultStruct {
  18. get {return _data; }
  19. }
  20. }
  21. }