package com.hepl.tunefortwo.entity;

import java.time.LocalDate;

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

import lombok.Getter;
import lombok.Setter;

@Document("DeliveryDate")
@Getter
@Setter
public class DeliveryDate {
	@Id
	private String id;
	private String estimatedDays;
	private double priceForTotalDays;
	private double pricePerDay;
	private LocalDate updatedAt;
	private LocalDate createdAt;
}
