Files
SabreTools.Serialization/Files/XMID.Serializer.cs

15 lines
441 B
C#
Raw Permalink Normal View History

2023-09-13 15:30:32 -04:00
using System;
using SabreTools.Serialization.Interfaces;
2023-09-13 15:30:32 -04:00
namespace SabreTools.Serialization.Files
{
public partial class XMID : IFileSerializer<Models.Xbox.XMID>
{
/// <inheritdoc/>
#if NET48
public bool Serialize(Models.Xbox.XMID obj, string path) => throw new NotImplementedException();
#else
public bool Serialize(Models.Xbox.XMID? obj, string? path) => throw new NotImplementedException();
#endif
}
}