mirror of
https://gitea.tendokyu.moe/beerpsi/CHUNITHM-Patch-Finder.git
synced 2024-11-23 23:31:03 +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; }
|
|
} |