-- | Aggregate type class.
module Data.CQRS.Aggregate
       ( Aggregate
       ) where

import Data.CQRS.Serializable

-- | Type class for aggregates.
class Serializable a => Aggregate a where
    -- No functions at the current time.