lib/expressir/model/inverse.rb in expressir-0.2.0 vs lib/expressir/model/inverse.rb in expressir-0.2.1
- old
+ new
@@ -1,15 +1,19 @@
module Expressir
module Model
class Inverse
attr_accessor :id
+ attr_accessor :supertype_attribute
attr_accessor :type
attr_accessor :attribute
+ attr_accessor :remarks
def initialize(options = {})
@id = options[:id]
+ @supertype_attribute = options[:supertype_attribute]
@type = options[:type]
@attribute = options[:attribute]
+ @remarks = options[:remarks]
end
end
end
end
\ No newline at end of file