Pointless Waymarks Tools

Artifact [d03e603fa2]
Login

Artifact [d03e603fa2]

Artifact d03e603fa23304ca5d10ff64df99cca0d060997a4b48ae66451bb2c7a1d20502:


using PointlessWaymarks.WpfCommon.Status;

namespace PointlessWaymarks.WpfCommon;

public interface IListSelectionWithContext<T>
{
    StatusControlContext StatusContext { get; set; }
    T? SelectedListItem();
    List<T> SelectedListItems();
}