mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-03 13:46:26 +08:00
11 lines
176 B
Ruby
11 lines
176 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseGamification
|
|
class DeletedGamificationLeaderboard
|
|
attr_reader :id
|
|
|
|
def initialize(id)
|
|
@id = id
|
|
end
|
|
end
|
|
end
|