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

EnumValueDescription.cs 249B

1234567891011
  1. namespace CacheControl_test.Areas.HelpPage.ModelDescriptions
  2. {
  3. public class EnumValueDescription
  4. {
  5. public string Documentation { get; set; }
  6. public string Name { get; set; }
  7. public string Value { get; set; }
  8. }
  9. }