proteome-0.9.9.9: lib/Proteome/Data/ProjectType.hs
module Proteome.Data.ProjectType where
import Ribosome (MsgpackDecode, MsgpackEncode)
newtype ProjectType =
ProjectType { unProjectType :: Text }
deriving stock (Ord, Eq, Show, Generic)
deriving newtype (MsgpackDecode, MsgpackEncode, IsString)