mirror of
https://gitea.tendokyu.moe/beerpsi/CHUNITHM-Patch-Finder.git
synced 2024-11-24 07:40:18 +01:00
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; } = [];
|
|
} |