using System;
using System.Collections;
using System.Collections.Generic;
using Avalonia.Controls.Selection;
#nullable enable
namespace Avalonia.Controls.Selection
{
public abstract class SelectionModelSelectionChangedEventArgs : EventArgs
{
///
/// Gets the indexes of the items that were removed from the selection.
///
public abstract IReadOnlyList DeselectedIndexes { get; }
///
/// Gets the indexes of the items that were added to the selection.
///
public abstract IReadOnlyList SelectedIndexes { get; }
///
/// Gets the items that were removed from the selection.
///
public IReadOnlyList