Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
feat(reminder): Create class to return object with reminder and Schoo…
Browse files Browse the repository at this point in the history
…lSupply
  • Loading branch information
AndreaBrighi committed Jul 11, 2023
1 parent e134d80 commit 78246cb
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.intelligentbackpack.reminderdomain.adapter

import com.intelligentbackpack.desktopdomain.entities.SchoolSupply
import com.intelligentbackpack.reminderdomain.entitites.ReminderForLesson

/**
* Reminder with supply.
*
* @param supply supply.
* @param reminder reminder.
*/
data class ReminderWithSupply(
val supply: SchoolSupply,
val reminder: ReminderForLesson,
)

0 comments on commit 78246cb

Please sign in to comment.