mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-13 21:33:38 +00:00
16 lines
395 B
C#
16 lines
395 B
C#
using System;
|
|
using System.IO;
|
|
using SabreTools.Models.CFB;
|
|
|
|
namespace SabreTools.Serialization.Streams
|
|
{
|
|
public partial class CFB : IStreamSerializer<Binary>
|
|
{
|
|
/// <inheritdoc/>
|
|
#if NET48
|
|
public Stream Serialize(Binary obj) => throw new NotImplementedException();
|
|
#else
|
|
public Stream? Serialize(Binary? obj) => throw new NotImplementedException();
|
|
#endif
|
|
}
|
|
} |