Skip to content
Snippets Groups Projects
Commit 889bd3d2 authored by Michal Cikatricis's avatar Michal Cikatricis
Browse files

WIP: selecting match added

parent 6c231a2b
No related branches found
No related tags found
1 merge request!1Groups
namespace TournamentManager
{
public class MatchSpecsSelectedEventArgs : CbItemSelectedEventArgs
{
public string SelectedMatch { get; }
public MatchSpecsSelectedEventArgs(string itemName, string selectedMatch)
: base(itemName)
{
SelectedMatch = selectedMatch;
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment