gitfoss | 7f75bc2ca15fa6ede3d368cac422083013049c3c | 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