import { Cookie } from './cookie.model';
export interface CookieGroup {
    groupId: string;
    groupName: string;
    groupOptOut: boolean;
    groupSelected: boolean;
    groupAlertMessage?: string;
    groupText: string;
    cookieList: Cookie[];
}
