module Expressir module Model module Types class Generic < ModelElement include Identifier def initialize(options = {}) @id = options[:id] @remarks = options.fetch(:remarks, []) @source = options[:source] end end end end end