car.d.ts 262 B

1234567891011121314151617
  1. export interface ICarBrand {
  2. id: string;
  3. name: string;
  4. }
  5. export interface ICarSeries {
  6. id: string;
  7. name: string;
  8. }
  9. export interface ICarModel {
  10. id: string;
  11. name: string;
  12. year: number;
  13. series: ICarSeries;
  14. brand: ICarBrand;
  15. }