Refactoring, technical debt: export more of trigger attributes into triggers.txt file #2077

This commit is contained in:
rusefillc 2021-07-24 00:37:39 -04:00
parent 5833fb3b9e
commit 8697a1f359
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
package com.rusefi.models.trigger;
public class WheelMeta {
private final String name;
private final boolean isFirstCrankBased;
public WheelMeta(String name, boolean isFirstCrankBased) {
this.name = name;
this.isFirstCrankBased = isFirstCrankBased;
}
}