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; }
|
|
} |