12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.Thesaurus
- {
-
-
-
- public class ThesaurusInRequest
- {
-
-
-
- public int ThesaurusType { get; set; }
-
-
-
- public string ThesaurusName { get; set; }
- }
- }
|