Artifact d03e603fa23304ca5d10ff64df99cca0d060997a4b48ae66451bb2c7a1d20502:
- File PointlessWaymarks.WpfCommon/IListSelectionWithContext.cs — part of check-in [2ca094c9fe] at 2024-06-07 03:18:35 on branch main — 1st Commit Trying Out a Common Library Intent for now is as a submodule. (user: charles@cmiles.info size: 245)
using PointlessWaymarks.WpfCommon.Status; namespace PointlessWaymarks.WpfCommon; public interface IListSelectionWithContext<T> { StatusControlContext StatusContext { get; set; } T? SelectedListItem(); List<T> SelectedListItems(); }