XmlCommentInfo.cs 620 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Grpc.Extension.BaseService.Model
  5. {
  6. internal class XmlCommentInfo
  7. {
  8. /// <summary>
  9. /// FullName(Math.MathGrpc.Add(Math.Model.AddRequest,Grpc.Core.ServerCallContext))
  10. /// </summary>
  11. public string FullName { get; set; }
  12. /// <summary>
  13. /// Type(T:类,M:方法,P:属性,F:字段,E:事件)
  14. /// </summary>
  15. public string Type { get; set; }
  16. /// <summary>
  17. /// Summary(注释)
  18. /// </summary>
  19. public string Summary { get; set; }
  20. }
  21. }