source:
src/main/java/com/example/moviezone/model/manytomany/CustomerIsInterestedInEventId.java@
49263ae
Last change on this file since 49263ae was d59ae27, checked in by , 22 months ago | |
---|---|
|
|
File size: 225 bytes |
Line | |
---|---|
1 | package com.example.moviezone.model.manytomany; |
2 | |
3 | import lombok.Data; |
4 | |
5 | import java.io.Serializable; |
6 | |
7 | @Data |
8 | public class CustomerIsInterestedInEventId implements Serializable { |
9 | Integer id_customer; |
10 | Integer id_event; |
11 | |
12 | } |
Note:
See TracBrowser
for help on using the repository browser.