interface Ad {
    imageUrl: string;
    title: string;
    body: string;
    url: string;
}

export default Ad;