autoboard/src/autoboard/list.cr
2023-01-12 00:17:10 +01:00

11 lines
157 B
Crystal

module AutoBoard
class List
property name : String
property label : String
def initialize(@name : String, @label : String)
end
end
end