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>
13 lines
194 B
TypeScript
13 lines
194 B
TypeScript
export interface IDbRent {
|
|
id?: string;
|
|
vehicle_id: string;
|
|
user_id: string;
|
|
active: boolean;
|
|
iat: Date;
|
|
eat: Date;
|
|
need_survey: boolean;
|
|
km_at_start: number;
|
|
}
|
|
|
|
export default IDbRent;
|