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