Files
Apollon/Apollon.WPF/ViewModels/ApollonOverviewListingItemViewModel.cs
Natlinux81 e9b04dbe89 Overview
Creating a Startwindow
2022-08-09 22:04:43 +02:00

21 lines
511 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
namespace Apollon.WPF.ViewModels
{
public class ApollonOverviewListingItemViewModel : ViewModelBase
{
public string Tournamentname { get; }
public ICommand DeleteCommand { get; }
public ApollonOverviewListingItemViewModel(string tournamentname)
{
Tournamentname = tournamentname;
}
}
}