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

Commit

Permalink
refactor(app): remove hierarchy from SchoolSupplyView
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaBrighi committed May 16, 2023
1 parent e60ac75 commit 4980f0b
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@ package com.intelligentbackpack.app.viewdata

import android.os.Parcelable
import kotlinx.parcelize.Parcelize
import com.intelligentbackpack.desktopdomain.entities.SchoolSupply
import com.intelligentbackpack.desktopdomain.entities.SchoolSupplyType

/**
* View data class for a school supply.
*/
@Parcelize
data class SchoolSupplyView(
override val rfidCode: String,
override val type: SchoolSupplyType,
val rfidCode: String,
val type: String,
val book: BookView? = null
) : SchoolSupply, Parcelable
) : Parcelable

0 comments on commit 4980f0b

Please sign in to comment.