src/client/app/modules/puzzle/services/board/square.model.ts
Properties |
constructor(id: string, isEmpty: boolean, row: number, col: number, value: string, expectedValue: string, cssClass: string)
|
Public col |
col:
|
Type : number
|
Public cssClass |
cssClass:
|
Type : string
|
Public expectedValue |
expectedValue:
|
Type : string
|
Public id |
id:
|
Type : string
|
Public isEmpty |
isEmpty:
|
Type : boolean
|
Public row |
row:
|
Type : number
|
Public value |
value:
|
Type : string
|
import { Row } from './row.model';
export class Square {
constructor(public id: string,
public isEmpty: boolean,
public row: number,
public col: number,
public value: string,
public expectedValue: string,
public cssClass: string) {}
}