aktueller Stand
This commit is contained in:
@@ -5,15 +5,18 @@ namespace FasdDesktopUi.Basics.Services.Models
|
||||
{
|
||||
public sealed class TicketOverviewCountsChangedEventArgs : EventArgs
|
||||
{
|
||||
public TicketOverviewCountsChangedEventArgs(IReadOnlyList<TileCountChange> changes, IReadOnlyDictionary<string, TileCounts> currentCounts)
|
||||
public TicketOverviewCountsChangedEventArgs(IReadOnlyList<TileCountChange> changes, IReadOnlyDictionary<string, TileCounts> currentCounts, TileScope? initializedScope = null)
|
||||
{
|
||||
Changes = changes;
|
||||
Changes = changes ?? Array.Empty<TileCountChange>();
|
||||
CurrentCounts = currentCounts;
|
||||
InitializedScope = initializedScope;
|
||||
}
|
||||
|
||||
public IReadOnlyList<TileCountChange> Changes { get; }
|
||||
|
||||
public IReadOnlyDictionary<string, TileCounts> CurrentCounts { get; }
|
||||
|
||||
public TileScope? InitializedScope { get; }
|
||||
}
|
||||
|
||||
public readonly struct TileCountChange
|
||||
|
||||
Reference in New Issue
Block a user