source: src/main/java/com/example/moviezone/model/manytomany/CustomerIsInterestedInEventId.java@ eb5426c

Last change on this file since eb5426c was d59ae27, checked in by milamihajlovska <mila.mihajlovska01@…>, 22 months ago

many to many models

  • Property mode set to 100644
File size: 225 bytes
Line 
1package com.example.moviezone.model.manytomany;
2
3import lombok.Data;
4
5import java.io.Serializable;
6
7@Data
8public class CustomerIsInterestedInEventId implements Serializable {
9 Integer id_customer;
10 Integer id_event;
11
12}
Note: See TracBrowser for help on using the repository browser.