package com.seewo.vcommons.model;

import com.google.gson.annotations.SerializedName;

/* JADX INFO: loaded from: classes.dex */
public class NFCPassword {

    @SerializedName("nfcName")
    private String nfcName;

    @SerializedName("nfcNum")
    private String nfcNum;

    public String getNfcNum() {
        return this.nfcNum;
    }

    public void setNfcNum(String str) {
        this.nfcNum = str;
    }

    public String getNfcName() {
        return this.nfcName;
    }

    public void setNfcName(String str) {
        this.nfcName = str;
    }

    public String toString() {
        return "NFCPassword{nfcNum='" + this.nfcNum + "', nfcName='" + this.nfcName + "'}";
    }
}
