Advertisement
ivana_andreevska

Category

Nov 10th, 2022
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. package mk.ukim.finki.wpaud.model;
  2.  
  3. import lombok.Data;
  4.  
  5. @Data
  6. public class Category {
  7. private String name;
  8. private String description;
  9.  
  10. public Category(String name, String description) {
  11. this.name = name;
  12. this.description = description;
  13. }
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement