export interface Newsletter {
    recipient: string;
    tag?: string;
    note?: string;
    channel?: string;
    longitude?: string;
    latitude?: string;
    unsubscribed?: boolean;
    disabled?: boolean;
}
