using apphost_extract_v2.General; using System; using System.Collections.Generic; using System.IO; using System.Reflection.PortableExecutable; using System.Text; namespace apphost_extract_v2.Models { public class ApphostFile30 : IApphostFile { public ApphostFile30(FileStream fs, PEHeaders peheader) : base(fs, peheader) { } public override void Close() { throw new NotImplementedException(); } } }