From 1b106dc944de5c5882310b076cb63682f5cc7eaf Mon Sep 17 00:00:00 2001 From: lyutvs Date: Sun, 21 May 2023 20:24:21 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20::=20Response=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../category/api/response/CategoryElement.kt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/notification-domain/src/main/kotlin/io/github/v1servicenotification/category/api/response/CategoryElement.kt b/notification-domain/src/main/kotlin/io/github/v1servicenotification/category/api/response/CategoryElement.kt index 7d24160..3d1a189 100644 --- a/notification-domain/src/main/kotlin/io/github/v1servicenotification/category/api/response/CategoryElement.kt +++ b/notification-domain/src/main/kotlin/io/github/v1servicenotification/category/api/response/CategoryElement.kt @@ -1,10 +1,6 @@ package io.github.v1servicenotification.category.api.response -import java.util.UUID - class CategoryElement( - val id: UUID, - val title: String, - val destination: String, val topic: String, + val isActivate: Boolean, )