export interface IIFoodClient {
    id: string;
    active: boolean;
    clientId: string;
    clientSecret: string;
    createdAt: Date;
    updatedAt: Date;
}
