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:
2024-05-03 09:52:07 +02:00
parent 33d6793758
commit 1c643b3625

View File

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