export interface Cookie {
    cookieId: string;
    cookieOptOut: boolean;
    cookieSelected: boolean;
    alertMessage?: string;
    cookieName: string;
    expires: string;
    domain: string;
    entreprise: string;
    purpose: string;
    description: string;
}
