Skip to content

Instantly share code, notes, and snippets.

@trikitrok
Last active March 24, 2025 18:41
Show Gist options
  • Save trikitrok/81eb67c087cc8b9c4b0dffaf8a049bd9 to your computer and use it in GitHub Desktop.
Save trikitrok/81eb67c087cc8b9c4b0dffaf8a049bd9 to your computer and use it in GitHub Desktop.
// :(
export class EmployeeType {
public static readonly WorkerEmployeeType: number = 0;
public static readonly SupervisorEmployeeType: number = 1;
public static readonly ManagerEmployeeType: number = 2;
}
////////////////////////////////////////
// :)
export enum EmployeeType {
Worker,
Supervisor,
Manager
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment