diff --git a/payment/voucher/domain/src/main/kotlin/app/payment/voucher/domain/Voucher.kt b/payment/voucher/domain/src/main/kotlin/app/payment/voucher/domain/Voucher.kt index 64a9629..7fbf762 100644 --- a/payment/voucher/domain/src/main/kotlin/app/payment/voucher/domain/Voucher.kt +++ b/payment/voucher/domain/src/main/kotlin/app/payment/voucher/domain/Voucher.kt @@ -3,10 +3,10 @@ package app.payment.voucher.domain import java.time.OffsetDateTime class Voucher( - public val id: Long, - public val type: VoucherType, - public val consumptionType: ConsumptionType, - public var status: VoucherStatus, - public val createdAt: OffsetDateTime, - public var updatedAt: OffsetDateTime, + val id: Long, + val type: VoucherType, + val consumptionType: ConsumptionType, + var status: VoucherStatus, + val createdAt: OffsetDateTime, + var updatedAt: OffsetDateTime, ) diff --git a/payment/voucher/domain/src/main/kotlin/app/payment/voucher/domain/VoucherContent.kt b/payment/voucher/domain/src/main/kotlin/app/payment/voucher/domain/VoucherContent.kt index 2761b17..0561e7c 100644 --- a/payment/voucher/domain/src/main/kotlin/app/payment/voucher/domain/VoucherContent.kt +++ b/payment/voucher/domain/src/main/kotlin/app/payment/voucher/domain/VoucherContent.kt @@ -3,12 +3,12 @@ package app.payment.voucher.domain import java.time.OffsetDateTime class VoucherContent( - public val id: Long, - public val voucherId: Long, - public val version: Int, - public val title: String, - public val description: String, - public val activeFrom: OffsetDateTime, - public val activeUntil: OffsetDateTime, - public val createdAt: OffsetDateTime, + val id: Long, + val voucherId: Long, + val version: Int, + val title: String, + val description: String, + val activeFrom: OffsetDateTime, + val activeUntil: OffsetDateTime, + val createdAt: OffsetDateTime, )