mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-16 13:55:32 +00:00
12 lines
320 B
C#
12 lines
320 B
C#
using System;
|
|
using System.IO;
|
|
using SabreTools.Serialization.Interfaces;
|
|
|
|
namespace SabreTools.Serialization.Streams
|
|
{
|
|
public partial class GCF : IStreamSerializer<Models.GCF.File>
|
|
{
|
|
/// <inheritdoc/>
|
|
public Stream? Serialize(Models.GCF.File? obj) => throw new NotImplementedException();
|
|
}
|
|
} |