You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
344 B
16 lines
344 B
import { Expose, Type } from 'class-transformer';
|
|
import { Racer } from "./racer.model";
|
|
import { Season } from './season.model';
|
|
|
|
export class SeasonStanding {
|
|
@Expose()
|
|
@Type(() => Season)
|
|
season: Season | null = null;
|
|
|
|
@Expose()
|
|
@Type(() => Racer)
|
|
racer: Racer | null = null;;
|
|
|
|
@Expose()
|
|
points: number = 0;
|
|
}
|