package com.hepl.tunefortwo.entity;

import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.mapping.Document;

import lombok.Getter;
import lombok.Setter;

@Document("Contact")
@Getter
@Setter
public class Contact {
	@Id
	private String id;
	private String name;
	private String message;
	private String mail;
	private String phonenumber;
}
