class Sirens::ItemsAdded

Attributes

index[R]
items[R]
list[R]

Public Class Methods

new(list:, index:, items:) click to toggle source
# File lib/models/list_model.rb, line 145
def initialize(list:, index:, items:)
    @list = list
    @index = index
    @items = items
end