ff-admin/src/viewmodels/admin/unit/vehicle/vehicle.models.ts

17 lines
252 B
TypeScript
Raw Normal View History

2025-03-24 15:12:03 +01:00
export interface VehicleViewModel {
id: string;
2025-03-26 12:45:14 +01:00
name: string;
2025-03-26 16:56:07 +01:00
type: string;
2025-03-24 15:12:03 +01:00
}
export interface CreateVehicleViewModel {
2025-03-26 12:45:14 +01:00
name: string;
2025-03-26 16:56:07 +01:00
type: string;
2025-03-24 15:12:03 +01:00
}
export interface UpdateVehicleViewModel {
id: string;
2025-03-26 12:45:14 +01:00
name: string;
2025-03-26 16:56:07 +01:00
type: string;
2025-03-24 15:12:03 +01:00
}