Files
laatzen/LaaProductionWeb/LaaProductionWeb.Blazor/Components/HeliumTester/Models/OverallItem.cs
T
2025-03-17 16:03:24 +01:00

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; }
}
}