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