feat(interfaces): Db - Rent

This commit is contained in:
2024-04-23 16:37:12 +02:00
parent 032ecc764a
commit 9cc6ce1275

View File

@@ -0,0 +1,11 @@
export interface IDbRent {
vehicle_id: string;
user_id: string;
active: boolean;
iat: Date;
eat: Date;
need_survey: boolean;
km_at_start: number
}
export default IDbRent;