19 lines
335 B
TypeScript
19 lines
335 B
TypeScript
export class PitViewModel {
|
|
id: string;
|
|
stoneCount: number;
|
|
stoneColor: string;
|
|
pitColor: string;
|
|
|
|
constructor(
|
|
id: string,
|
|
stoneCount: number,
|
|
stoneColor: string,
|
|
pitColor: string
|
|
) {
|
|
this.id = id;
|
|
this.stoneCount = stoneCount;
|
|
this.stoneColor = stoneColor;
|
|
this.pitColor = pitColor;
|
|
}
|
|
}
|