mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-14 05:36:30 +00:00
14 lines
402 B
C#
14 lines
402 B
C#
using System;
|
|
|
|
namespace SabreTools.Serialization.Files
|
|
{
|
|
public partial class XeMID : IFileSerializer<Models.Xbox.XeMID>
|
|
{
|
|
/// <inheritdoc/>
|
|
#if NET48
|
|
public bool Serialize(Models.Xbox.XeMID obj, string path) => throw new NotImplementedException();
|
|
#else
|
|
public bool Serialize(Models.Xbox.XeMID? obj, string? path) => throw new NotImplementedException();
|
|
#endif
|
|
}
|
|
} |