package com.servicebook.data.preferences /** * Modes for overriding the billing state during debug/development. */ enum class DebugBillingOverrideMode { /** No override; use real billing results. */ NONE, /** Force the app to act as if the user is on the free tier. */ FORCE_FREE, /** Force the app to act as if the user has purchased premium. */ FORCE_PREMIUM, }