export interface EmpGroupModel{
    groupId: string;
    tdesc: string;
    edesc: string;
    companyId: string;
}


export class MyEmpGroupModel implements EmpGroupModel {
    groupId: string;
    tdesc: string;
    edesc: string;
    companyId: string;
    constructor(data: Partial<EmpGroupModel>) {
        this.groupId = data.groupId || ""
        this.tdesc = data.tdesc || ""
        this.edesc = data.edesc || ""
        this.companyId = data.companyId || ""
    }
}