autoboard/src/autoboard/list.cr

11 lines
157 B
Crystal
Raw Normal View History

2023-01-11 23:17:10 +00:00
module AutoBoard
class List
property name : String
property label : String
def initialize(@name : String, @label : String)
end
end
end