16 lines
252 B
TypeScript
16 lines
252 B
TypeScript
export interface VehicleViewModel {
|
|
id: string;
|
|
name: string;
|
|
type: string;
|
|
}
|
|
|
|
export interface CreateVehicleViewModel {
|
|
name: string;
|
|
type: string;
|
|
}
|
|
|
|
export interface UpdateVehicleViewModel {
|
|
id: string;
|
|
name: string;
|
|
type: string;
|
|
}
|