enum CustomerSource {
offline('offline'),
online("online");
final String source;
const CustomerSource(this.source);
}