14 lines
353 B
C#
14 lines
353 B
C#
|
namespace CHUNITHM_Patch_Finder.Models;
|
||
|
|
||
|
public class BemaniPatcherNumberPatch : BemaniPatcherPatch
|
||
|
{
|
||
|
public override string Type => "number";
|
||
|
|
||
|
public required int Offset { get; set; }
|
||
|
|
||
|
public required int Size { get; set; }
|
||
|
|
||
|
public required int Min { get; set; }
|
||
|
|
||
|
public required int Max { get; set; }
|
||
|
}
|