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

15 lines
393 B
C#

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