using System.Collections.Generic; namespace FNZCM.ConHost { internal class LoadedModule { public string VirtualPath { get; set; } public string DisplayText { get; set; } public string DefaultDocument { get; set; } public Dictionary Files { get; set; } public bool EnableFallbackRoute { get; set; } public string HtmlBaseReplace { get; set; } } }