9 lines
176 B
Haskell
9 lines
176 B
Haskell
module Data.String.Ubc.Parse.StructVariable
|
|
( StructVariable(..)
|
|
)
|
|
where
|
|
|
|
data StructVariable = StructVariable
|
|
{ name :: String
|
|
, typeName :: String
|
|
}
|