ModuleModels.cs 326 B

12345678910111213
  1. using System.Collections.Generic;
  2. namespace FNZCM.ConHost.Ver2
  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. }
  11. }