gitfoss | b7732506b5f7b807a4b7f5e51001295e51b7784e | packages/gitfoss-ci-runner/src/project.cr ∙ GitFOSS
.cr
Crystal
(text/x-crystal)
class Project
  property orgSlug : String
  property repoSlug : String

  def initialize(@orgSlug : String, @repoSlug : String)
  end

  def to_s
    "#{@orgSlug}/#{@repoSlug}"
  end
end