CHUNITHM-Patch-Finder/Models/BemaniPatcherPatch.cs
2024-04-11 15:44:23 +07:00

13 lines
339 B
C#

using Newtonsoft.Json;
namespace CHUNITHM_Patch_Finder.Models;
[JsonObject(ItemNullValueHandling = NullValueHandling.Ignore)]
public abstract class BemaniPatcherPatch
{
[JsonProperty(Order = -2)]
public abstract string? Type { get; }
[JsonProperty(Order = -2)]
public required string Name { get; set; }
}