This commit is contained in:
2024-02-23 06:58:53 -05:00
commit 732db8235b
211 changed files with 37084 additions and 0 deletions

15
Model/MenuItem.cs Normal file
View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Input;
namespace TradeBlotter.Model
{
public class MenuItem
{
public String Text { get; set; }
public bool StaysOpenOnClick { get; set; }
public ICommand MenuItemClickedCommand { get; set; }
}
}