with: ``` enum class PeriodType{ Past, Current...
# codereview
e
with:
Copy code
enum class PeriodType{
  Past,
  Current
}

data class TransactionPeriod(
   val interval: Interval,
   val isMonthly: Boolean,
   val type: PeriodType
)