Files
SabreTools.Serialization/Streams/NewExecutable.Serializer.cs
2023-09-08 22:45:21 -04:00

16 lines
427 B
C#

using System;
using System.IO;
using SabreTools.Models.NewExecutable;
namespace SabreTools.Serialization.Streams
{
public partial class NewExecutable : IStreamSerializer<Executable>
{
/// <inheritdoc/>
#if NET48
public Stream Serialize(Executable obj) => throw new NotImplementedException();
#else
public Stream? Serialize(Executable? obj) => throw new NotImplementedException();
#endif
}
}