horse.ts 203 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
export class Horse {
  constructor(
    public id: number,
    public name: string,
    public description: string,
    public score: number,
    public birthday: Date,
    public owner: number) {
  }
}