16 lines
324 B
C#
16 lines
324 B
C#
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; }
|
|
}
|
|
}
|