FileRange.hs revision 649fdc0d0502d62d160c150684356fef2c273484
{-# LANGUAGE CPP, TypeFamilies, DeriveDataTypeable #-}
module PGIP.GraphQL.Result.FileRange where
import Data.Data
data FileRange = FileRange { startLine :: Int
, startColumn :: Int
, endLine :: Maybe Int
, endColumn :: Maybe Int
, path :: String
} deriving (Show, Typeable, Data)