export default interface Consent {
    name: string;
    label: string;
    required?: boolean;
    checked?: boolean;
}
