8 lines
170 B
Haskell
8 lines
170 B
Haskell
{-# LANGUAGE TypeFamilies #-}
|
|
module Classes.DatabaseRepresentation where
|
|
|
|
import Data.Kind (Type)
|
|
|
|
class DatabaseRepresentation a where
|
|
|
|
type Representation a :: Type
|