31 lines
649 B
C#
31 lines
649 B
C#
namespace LaaProductionWeb.Blazor.Components.HeliumTester.Models
|
|
{
|
|
using System;
|
|
|
|
public class OverallItem
|
|
{
|
|
public event Action SelectionChanged;
|
|
|
|
public int OverallId { get; set; }
|
|
|
|
public int PcbId { get; set; }
|
|
|
|
private bool selected;
|
|
public bool Selected
|
|
{
|
|
get => this.selected;
|
|
set
|
|
{
|
|
this.selected = value;
|
|
|
|
if (this.SelectionChanged != null)
|
|
{
|
|
this.SelectionChanged.Invoke();
|
|
}
|
|
}
|
|
}
|
|
|
|
public string Description { get; set; }
|
|
}
|
|
}
|