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