source: src/main/java/com/example/autopartz/model/manytomany/PartIsFromCategoryId.java@ 4d67d70

main
Last change on this file since 4d67d70 was 4d67d70, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 18 months ago

Final touches

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