module Network.URI.Types(Application(..)) where

import Network.URI

data Application = Application {
    Application -> String
name :: String,
    Application -> URI
icon :: URI,
    Application -> String
description :: String,
    Application -> String
appId :: String -- internal
} deriving (Int -> Application -> ShowS
[Application] -> ShowS
Application -> String
(Int -> Application -> ShowS)
-> (Application -> String)
-> ([Application] -> ShowS)
-> Show Application
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [Application] -> ShowS
$cshowList :: [Application] -> ShowS
show :: Application -> String
$cshow :: Application -> String
showsPrec :: Int -> Application -> ShowS
$cshowsPrec :: Int -> Application -> ShowS
Show)