feat(interfaces): Db - Rent

This commit is contained in:
Mathis H (Avnyr) 2024-04-23 16:37:12 +02:00
parent 032ecc764a
commit 9cc6ce1275
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

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;