ModuleEntry.cs 299 B

12345678910
  1. public class ModuleEntry
  2. {
  3. public bool IsDefault { get; set; }
  4. public string DisplayText { get; set; }
  5. public string Path { get; set; }
  6. public bool EnableFallbackRoute { get; set; }
  7. public string DefaultDocument { get; set; }
  8. public string HtmlBaseReplace { get; set; }
  9. }