delete Player

This commit is contained in:
Halit Aksoy 2022-05-04 15:03:13 +03:00
parent 54ecfe3b8b
commit c970c7c7fa

View File

@ -1,9 +0,0 @@
export class Player {
id: string;
name: string;
constructor(id: string, name: string) {
this.id = id;
this.name = name;
}
}