class Sirens::ItemsRemoved

Attributes

indices[R]
items[R]
list[R]

Public Class Methods

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