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.

ModelDescription.cs 340B

12345678910111213141516
  1. using System;
  2. namespace CacheControl_test.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. }