module History.IssueEvent (IssueEvent (..)) where import History.CommitHash (CommitHash) import Issue (Issue) data IssueEvent = IssueCreated { hash :: CommitHash, issue :: Issue } | IssueChanged { hash :: CommitHash, issue :: Issue } | IssueDeleted { hash :: CommitHash, issue :: Issue } deriving (Show)