19 lines
343 B
TypeScript
19 lines
343 B
TypeScript
|
|
export default 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;
|
||
|
|
}
|
||
|
|
}
|