From 46df0a1371f05114edea50c9bb572e6e3ff9179f Mon Sep 17 00:00:00 2001 From: limited_dev Date: Wed, 28 Jun 2023 22:42:43 +0200 Subject: [PATCH] chore: add comments to PlanningNotifierRolesData Signed-off-by: limited_dev --- .../lilJudd/data/entry/PlanningNotifierRolesData.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/kotlin/net/moonleay/lilJudd/data/entry/PlanningNotifierRolesData.kt b/src/main/kotlin/net/moonleay/lilJudd/data/entry/PlanningNotifierRolesData.kt index 0798ccc..8cba107 100644 --- a/src/main/kotlin/net/moonleay/lilJudd/data/entry/PlanningNotifierRolesData.kt +++ b/src/main/kotlin/net/moonleay/lilJudd/data/entry/PlanningNotifierRolesData.kt @@ -19,8 +19,8 @@ package net.moonleay.lilJudd.data.entry data class PlanningNotifierRolesData( - val serverID: String, - val channelId: String, - val hastimeroleid: String, - val wantstobenotifid: String + val serverID: String, // The id of the server + val channelId: String, // The id of the channel + val hastimeroleid: String, // The id of the role that has time today + val wantstobenotifid: String // The id of the role that wants to be notified )