Sha256: eb692283dbefdc2c55f1170a45d0640ca3ad5d478d62905a45a0bafbcafd5b26
Contents?: true
Size: 446 Bytes
Versions: 19
Compression:
Stored size: 446 Bytes
Contents
module Lol class RuneSlot < Model # @!attribute [r] id # @return [Fixnum] id of RuneSlot def id @rune_slot_id end # @!attribute [r] rune_id # @return [Fixnum] id of Rune def rune_id @rune_id end private def id= new_id @rune_slot_id = new_id end def rune_id= new_id @rune_id = new_id end def rune_slot_id= new_id @rune_slot_id = new_id end end end
Version data entries
19 entries across 19 versions & 1 rubygems