Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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