File

src/app/models/manager-table.ts

Index

Properties

Properties

createdOn
Type : Date
firstName
Type : string
lastName
Type : string
month
Type : number
role
Type : string
timesheetDetails
Type : TimesheetDetails[]
timesheetID
Type : number
timesheetStatus
Type : string
userId
Type : number
year
Type : number
import { TimesheetDetails } from "./timesheet-details";

export class ManagerTable {
    timesheetID: number;
    month: number;
    year: number;
    createdOn: Date;
    timesheetStatus: string;
    timesheetDetails: TimesheetDetails[];
    userId: number;
    firstName: string;
    lastName: string;
    role: string;
}

results matching ""

    No results matching ""