mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-11 13:45:39 +00:00
14 lines
398 B
C#
14 lines
398 B
C#
using System;
|
|
|
|
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
|
|
}
|
|
} |