detail
unknown
plain_text
2 years ago
1.2 kB
6
Indexable
/* * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template */ package Models; /** * * @author MSI GTX */ public class Detail { private int id; private String name; private String link; private String description; public Detail() { } public Detail(int id, String name, String link, String description) { this.id = id; this.name = name; this.link = link; this.description = description; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getLink() { return link; } public void setLink(String link) { this.link = link; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } }
Editor is loading...