webhooksd/src/gitlab.cr

14 lines
195 B
Crystal

require "json"
class Gitlab::Project
include JSON::Serializable
property path_with_namespace : String
end
class Gitlab::Payload
include JSON::Serializable
property project : Project
end