- using System.Collections.Generic;
- namespace FNZCM.ConHost.Ver2
- {
- 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; }
- }
- }
|