CHUNITHM-Patch-Finder/Models/BemaniPatcherPatch.cs

13 lines
339 B
C#
Raw Normal View History

2024-04-11 08:44:23 +00:00
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; }
}