mirror of
https://gitea.tendokyu.moe/beerpsi/CHUNITHM-Patch-Finder.git
synced 2024-11-27 17:10:48 +01:00
13 lines
339 B
C#
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; }
|
||
|
}
|