mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-14 05:36:30 +00:00
15 lines
393 B
C#
15 lines
393 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace SabreTools.Serialization.Streams
|
|
{
|
|
public partial class NCF : IStreamSerializer<Models.NCF.File>
|
|
{
|
|
/// <inheritdoc/>
|
|
#if NET48
|
|
public Stream Serialize(Models.NCF.File obj) => throw new NotImplementedException();
|
|
#else
|
|
public Stream? Serialize(Models.NCF.File? obj) => throw new NotImplementedException();
|
|
#endif
|
|
}
|
|
} |