mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-15 05:45:05 +00:00
13 lines
369 B
C#
13 lines
369 B
C#
using System;
|
|
using System.IO;
|
|
using SabreTools.Models.PortableExecutable;
|
|
using SabreTools.Serialization.Interfaces;
|
|
|
|
namespace SabreTools.Serialization.Streams
|
|
{
|
|
public partial class PortableExecutable : IStreamSerializer<Executable>
|
|
{
|
|
/// <inheritdoc/>
|
|
public Stream? Serialize(Executable? obj) => throw new NotImplementedException();
|
|
}
|
|
} |