Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/modtool/ModToolSanctionLevelItem.java
2020-01-19 18:18:15 -05:00

16 lines
555 B
Java

package com.eu.habbo.habbohotel.modtool;
public class ModToolSanctionLevelItem {
public int sanctionLevel;
public String sanctionType;
public int sanctionHourLength;
public int sanctionProbationDays;
public ModToolSanctionLevelItem(int sanctionLevel, String sanctionType, int sanctionHourLength, int sanctionProbationDays) {
this.sanctionLevel = sanctionLevel;
this.sanctionType = sanctionType;
this.sanctionHourLength = sanctionHourLength;
this.sanctionProbationDays = sanctionProbationDays;
}
}