ModuleModels.cs 427 B

123456789101112131415
  1. using System.Collections.Generic;
  2. namespace FNZCM.ConHost
  3. {
  4. internal class LoadedModule
  5. {
  6. public string VirtualPath { get; set; }
  7. public string DisplayText { get; set; }
  8. public string DefaultDocument { get; set; }
  9. public Dictionary<string, byte[]> Files { get; set; }
  10. public bool EnableFallbackRoute { get; set; }
  11. public string HtmlBaseReplace { get; set; }
  12. }
  13. }