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

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

many to many ids

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