123456789101112131415 |
- 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<string, byte[]> Files { get; set; }
- public bool EnableFallbackRoute { get; set; }
- public string HtmlBaseReplace { get; set; }
- }
- }
|