namespace LaaProductionWeb.Blazor.Components.HeliumTester.Models { using System; public class MatchItemModel { public event Action SelectionChanged; private bool selected; public bool Selected { get => this.selected; set { this.selected = value; this.SelectionChanged?.Invoke(); } } } }