mirror of
https://gitea.tendokyu.moe/beerpsi/CHUNITHM-Patch-Finder.git
synced 2024-11-23 23:31:03 +01:00
10 lines
240 B
C#
10 lines
240 B
C#
|
namespace CHUNITHM_Patch_Finder.Models;
|
||
|
|
||
|
public class BemaniPatcherStandardPatchEntry
|
||
|
{
|
||
|
public required int Offset { get; set; }
|
||
|
|
||
|
public required int[] Off { get; set; }
|
||
|
|
||
|
public required int[] On { get; set; }
|
||
|
}
|