mirror of
https://gitea.tendokyu.moe/beerpsi/CHUNITHM-Patch-Finder.git
synced 2024-11-23 23:31:03 +01:00
14 lines
266 B
C#
14 lines
266 B
C#
namespace CHUNITHM_Patch_Finder.Models;
|
|
|
|
public record Pattern
|
|
{
|
|
public required string Name;
|
|
|
|
public string? Signature = null;
|
|
|
|
public required PatternPatch[] Patches;
|
|
|
|
public string? Tooltip = null;
|
|
|
|
public string? Danger = null;
|
|
} |