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

Last change on this file since 7215773 was ef84238, checked in by DenicaKj <dkorvezir@…>, 21 months ago

Interested in event

  • Property mode set to 100644
File size: 223 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 idcustomer;
10 Integer idevent;
11
12}
Note: See TracBrowser for help on using the repository browser.