using System; using System.IO; using SabreTools.Models.PortableExecutable; using SabreTools.Serialization.Interfaces; namespace SabreTools.Serialization.Streams { public partial class PortableExecutable : IStreamSerializer { /// public Stream? Serialize(Executable? obj) => throw new NotImplementedException(); } }