12 lines
335 B
C#
12 lines
335 B
C#
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; } = [];
|
|
} |