"frontend/wendys-friends/src/app/dto/horse.ts" did not exist on "dda711f33e8aae852ba7e270b44903a4b0e858c5"
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) {
  }
}