package com.cvte.vman.entity;

/* JADX INFO: loaded from: classes.dex */
public class ThermalModuleInfo {
    public int currentTemp;
    public boolean isValid;
    public int maxTemp;
    public String moduleName;

    public ThermalModuleInfo() {
    }

    public ThermalModuleInfo(String str, int i2, int i3, boolean z) {
        this.moduleName = str;
        this.currentTemp = i2;
        this.maxTemp = i3;
        this.isValid = z;
    }
}
