26 lines
743 B
C#
26 lines
743 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
|
|
namespace FasdDesktopUi.Basics.Models
|
|
{
|
|
public class TicketOverviewSelectionRequestedEventArgs : RoutedEventArgs
|
|
{
|
|
public string Key { get; }
|
|
public bool UseRoleScope { get; }
|
|
public int Count { get; }
|
|
|
|
public TicketOverviewSelectionRequestedEventArgs(RoutedEvent routedEvent, object source,
|
|
string key, bool useRoleScope, int count)
|
|
: base(routedEvent, source)
|
|
{
|
|
Key = key;
|
|
UseRoleScope = useRoleScope;
|
|
Count = count;
|
|
}
|
|
}
|
|
}
|