Skip to content

Commit c95894b

Browse files
authored
Create access_token.rb
1 parent 7f73833 commit c95894b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# frozen_string_literal: true
2+
require_relative 'jsonable'
3+
4+
class FixedInfo < JSONable
5+
attr_accessor :userId, :levelName
6+
7+
def initialize; end
8+
9+
def initialize(userId, levelName)
10+
@userId = userId
11+
@levelName = levelName
12+
end
13+
14+
end

0 commit comments

Comments
 (0)