{- | Module : HCovGuard.Config.Threshold Description : Coverage threshold configuration Copyright : (c) Trevis Elser, 2026 License : MIT Maintainer : oss@treviselser.com -} module HCovGuard.Config.Threshold ( CoverageThreshold (..) ) where {- | Coverage thresholds for a specific category @since 0.1.0.0 -} data CoverageThreshold = CoverageThreshold { minimumCovered :: !(Maybe Int) , maximumUncovered :: !(Maybe Int) }