12 lines
208 B
Ruby
12 lines
208 B
Ruby
module Sof
|
|
class Volotile
|
|
@@mapping = { }
|
|
def self.attributes clazz
|
|
@@mapping[clazz] || []
|
|
end
|
|
def self.add clazz , attributes
|
|
@@mapping[clazz] = attributes
|
|
end
|
|
end
|
|
end
|