21 lines
428 B
C#
21 lines
428 B
C#
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();
|
|
}
|
|
}
|
|
}
|
|
}
|