選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }