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

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

Interested in event

  • Property mode set to 100644
File size: 223 bytes
RevLine 
[b10fc39]1package com.example.moviezone.model.manytomany;
2
3import lombok.Data;
4
[e2ca67b]5import java.io.Serializable;
6
[b10fc39]7@Data
[e2ca67b]8public class CustomerIsInterestedInEventId implements Serializable {
[ef84238]9 Integer idcustomer;
10 Integer idevent;
[d59ae27]11
[b10fc39]12}
Note: See TracBrowser for help on using the repository browser.