CHUNITHM-Patch-Finder/Models/BemaniPatcherStandardPatch.cs

12 lines
335 B
C#
Raw Normal View History

2024-04-11 08:44:23 +00:00
namespace CHUNITHM_Patch_Finder.Models;
public class BemaniPatcherStandardPatch : BemaniPatcherPatch
{
public override string? Type => null;
public string? Tooltip { get; set; } = null;
public string? Danger { get; set; } = null;
public List<BemaniPatcherStandardPatchEntry> Patches { get; set; } = [];
}