package com.hepl.tunefortwo.entity;

import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.List;

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

import com.hepl.tunefortwo.dto.OrderTrackerDto;

import lombok.Getter;
import lombok.Setter;

@Document("WelcomeVideo")
@Getter
@Setter
public class WelcomeVideo {
	@Id
	private String id;
	private String videoLink;
	private String videoName;
	private boolean videoFlag;
	private String videoType;

}
