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.

ParameterDescription.cs 548B

123456789101112131415161718192021
  1. using System.Collections.Generic;
  2. using System.Collections.ObjectModel;
  3. namespace CacheControl_test.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. }