package com.seewo.vcommons.model;

/* JADX INFO: loaded from: classes.dex */
public class PanelLockMode {
    private boolean mHadActivate;
    private boolean mHadSet;
    private String mPassword;
    private int mTimes;

    public PanelLockMode() {
        this.mPassword = "";
        this.mTimes = 43200;
        this.mHadSet = false;
        this.mHadActivate = false;
    }

    public PanelLockMode(String str, int i, boolean z, boolean z2) {
        this.mPassword = str;
        this.mTimes = i;
        this.mHadSet = z;
        this.mHadActivate = z2;
    }

    public String getPassword() {
        return this.mPassword;
    }

    public void setPassword(String str) {
        this.mPassword = str;
    }

    public int getTimes() {
        return this.mTimes;
    }

    public void setTimes(int i) {
        this.mTimes = i;
    }

    public boolean isHadSet() {
        return this.mHadSet;
    }

    public void setHadSet(boolean z) {
        this.mHadSet = z;
    }

    public boolean isHadActivate() {
        return this.mHadActivate;
    }

    public void setHadActivate(boolean z) {
        this.mHadActivate = z;
    }
}
