1234567891011121314151617181920212223 |
- using System;
- using System.IO;
- using System.Collections.Generic;
- using COSXML.Model.Tag;
- using COSXML.Transfer;
- namespace COSXML.Model.CI
- {
-
-
-
- public sealed class SensitiveContentRecognitionResult : CosDataResult<SensitiveRecognitionResult>
- {
-
-
-
-
- public SensitiveRecognitionResult recognitionResult {
- get {return _data; }
- }
- }
- }
|