From 6c22050906855906eb12afd478ef0c45c6b317cd Mon Sep 17 00:00:00 2001 From: r-ca Date: Sat, 20 Jan 2024 15:18:32 +0900 Subject: [PATCH] =?UTF-8?q?=E8=A8=AD=E5=AE=9A=E7=94=BB=E9=9D=A2=E3=81=AE?= =?UTF-8?q?=E3=83=AA=E3=82=B9=E3=83=88=E3=82=A2=E3=82=A4=E3=83=86=E3=83=A0?= =?UTF-8?q?=E7=94=A8=E3=83=A2=E3=83=87=E3=83=AB=E4=BD=9C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../setting/model/SettingListItem.java | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 feature/setting/src/main/java/one/nem/lacerta/setting/model/SettingListItem.java diff --git a/feature/setting/src/main/java/one/nem/lacerta/setting/model/SettingListItem.java b/feature/setting/src/main/java/one/nem/lacerta/setting/model/SettingListItem.java new file mode 100644 index 00000000..868468a2 --- /dev/null +++ b/feature/setting/src/main/java/one/nem/lacerta/setting/model/SettingListItem.java @@ -0,0 +1,55 @@ +package one.nem.lacerta.setting.model; + +import android.graphics.drawable.Drawable; + +public class SettingListItem { + + String title; + String description; + String destination; + Drawable icon; + + public SettingListItem(String title, String description, String destination, Drawable icon) { + this.title = title; + this.description = description; + this.destination = destination; + this.icon = icon; + } + + public SettingListItem() { + // Empty constructor + } + + public String getTitle() { + return title; + } + + public String getDescription() { + return description; + } + + public String getDestination() { + return destination; + } + + public Drawable getIcon() { + return icon; + } + + public void setTitle(String title) { + this.title = title; + } + + public void setDescription(String description) { + this.description = description; + } + + public void setDestination(String destination) { + this.destination = destination; + } + + public void setIcon(Drawable icon) { + this.icon = icon; + } + +}