Files
SabreTools.Serialization/Streams/LinearExecutable.Serializer.cs

16 lines
433 B
C#
Raw Normal View History

2023-09-08 22:41:49 -04:00
using System;
using System.IO;
using SabreTools.Models.LinearExecutable;
namespace SabreTools.Serialization.Streams
{
public partial class LinearExecutable : IStreamSerializer<Executable>
{
/// <inheritdoc/>
#if NET48
public Stream Serialize(Executable obj) => throw new NotImplementedException();
#else
public Stream? Serialize(Executable? obj) => throw new NotImplementedException();
#endif
}
}