package com.seewo.sdk.internal.command.device;

import com.seewo.sdk.internal.model.SDKParsable;

/* JADX INFO: loaded from: classes.dex */
public class CmdSetLvdsMapValue implements SDKParsable {
    private int mValue;

    public CmdSetLvdsMapValue() {
        this.mValue = 0;
    }

    public int getValue() {
        return this.mValue;
    }

    public void setValue(int i) {
        this.mValue = i;
    }

    public CmdSetLvdsMapValue(int i) {
        this.mValue = 0;
        this.mValue = i;
    }
}
