package me.khodak.claudeusage.data /** * A single point-in-time reading of usage, stored for the in-app history chart. * Percentages are 0-100; -1 means "no reading for this metric at this time". */ data class UsageSnapshot( val epochMs: Long = 0L, val sessionPct: Float = -1f, val weeklyPct: Float = -1f )