Advertisement
iNoobAvicena

Kategori Model

Dec 5th, 2021
675
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. public class KategoriModel {
  2.     private String category;
  3.  
  4.     public KategoriModel() {
  5.     }
  6.     public KategoriModel(String category) {
  7.         this.category = category;
  8.     }
  9.     public String getCat() {
  10.         return category;
  11.     }
  12.     public void setCat(String category) {
  13.         this.category = category;
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement