纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
545 B

  1. using System.Collections.Generic;
  2. using System.Collections.ObjectModel;
  3. namespace ICSSoft.WebAPI.Areas.HelpPage.ModelDescriptions
  4. {
  5. public class ParameterDescription
  6. {
  7. public ParameterDescription()
  8. {
  9. Annotations = new Collection<ParameterAnnotation>();
  10. }
  11. public Collection<ParameterAnnotation> Annotations { get; private set; }
  12. public string Documentation { get; set; }
  13. public string Name { get; set; }
  14. public ModelDescription TypeDescription { get; set; }
  15. }
  16. }