MemberEntity.cs 802 B

1234567891011121314151617181920212223
  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 Para { get; set; } = "";
  15. }
  16. public class ParamEntity
  17. {
  18. public string ParamName { get; set; } = string.Empty;
  19. public string ParamText { get; set; } = string.Empty;
  20. }
  21. }