package com.suno.android.common_data.billing.models import androidx.compose.runtime.Immutable /** * Represents the rules associated with subscription plan transitions, containing period transitions (month <-> year), * and tier transitions (basic <-> pro <-> premier, etc) */ @Immutable data class PlanTransitionRules( val periodTransitions: PeriodTransitions, val tierTransitions: TierTransitions, )