MemberEntity.cs 852 B

123456789101112131415161718192021222324
  1. using System.Collections.Generic;
  2. namespace DocTools.Entity
  3. {
  4. public class MemberEntity
  5. {
  6. public string ParamName { get; set; } = string.Empty;
  7. public string Summary { get; set; } = string.Empty;
  8. public string Value { get; set; } = string.Empty;
  9. public List<ParamEntity> Param { get; set; } = new List<ParamEntity>();
  10. public string Returns { get; set; } = string.Empty;
  11. public string Remarks { get; set; } = string.Empty;
  12. public string Code { get; set; } = "1";
  13. public string Example { get; set; } = "";
  14. public string ErrorCodes { get; set; } = "";
  15. public bool C { get; set; } = true;
  16. }
  17. public class ParamEntity
  18. {
  19. public string ParamName { get; set; } = string.Empty;
  20. public string ParamText { get; set; } = string.Empty;
  21. }
  22. }