Skip to content

Instantly share code, notes, and snippets.

@droidjahangir
Created September 16, 2021 04:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save droidjahangir/9a5a57d53226a5491ee5506ccf9d4469 to your computer and use it in GitHub Desktop.
Save droidjahangir/9a5a57d53226a5491ee5506ccf9d4469 to your computer and use it in GitHub Desktop.
class Department {
private id: string;
private name: string;
private employees: string[] = [];
constructor(id: string, n: string) {
this.id = id;
this.name = n;
}
//...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment