Sha256: b97b65e24d28b66acd54979983f900bb9676a5a9fdfa7ed662138a6b4a77a921
Contents?: true
Size: 459 Bytes
Versions: 2
Compression:
Stored size: 459 Bytes
Contents
module Expressir module Model class Explicit attr_accessor :id attr_accessor :supertype_attribute attr_accessor :optional attr_accessor :type attr_accessor :remarks def initialize(options = {}) @id = options[:id] @supertype_attribute = options[:supertype_attribute] @optional = options[:optional] @type = options[:type] @remarks = options[:remarks] end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
expressir-0.2.2 | lib/expressir/model/explicit.rb |
expressir-0.2.1 | lib/expressir/model/explicit.rb |