export interface Quotes {
    recipient: string | null;
    phrase: string | null;
    situation: string | null;
}
