/*
 * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
 */
package kkmvc;

/**
 *
 * @author CHARUSAT
 */
public class EmpModel {
    private String EmpId;
    private String EmpName;

    public String getEmpId() {
        return EmpId;
    }
    public void setEmpId(String EmpId) {
        this.EmpId = EmpId;
    }
    public String getEmpName() {
        return EmpName;
    }
    public void setEmpName(String EmpName) {
        this.EmpName = EmpName;
    }   
}
