export interface ICustomer {
    readonly email: string;
    readonly name: string;
}
