纽威
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.

15 lines
337 B

  1. using System;
  2. namespace ICSSoft.WebAPI.Areas.HelpPage.ModelDescriptions
  3. {
  4. /// <summary>
  5. /// Describes a type model.
  6. /// </summary>
  7. public abstract class ModelDescription
  8. {
  9. public string Documentation { get; set; }
  10. public Type ModelType { get; set; }
  11. public string Name { get; set; }
  12. }
  13. }