feat(interfaces): add optional id property to IDbRent interface

A new optional `id` property has been added to `IDbRent` interface in the `interfaces` scope. This allows for more flexibility when working with rent objects in the database.

Signed-off-by: Mathis <yidhra@tuta.io>
This commit is contained in:
Mathis H (Avnyr) 2024-05-03 09:52:07 +02:00
parent 33d6793758
commit 1c643b3625
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -1,4 +1,5 @@
export interface IDbRent { export interface IDbRent {
id?: string;
vehicle_id: string; vehicle_id: string;
user_id: string; user_id: string;
active: boolean; active: boolean;