markus / KCOM / Common / MenuItem.cs @ master
이력 | 보기 | 이력해설 | 다운로드 (362 Bytes)
1 | b74a9c91 | taeseongkim | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | namespace KCOM.Common |
||
8 | { |
||
9 | public class MarkupMenuItem |
||
10 | { |
||
11 | public string Name { get; set; } |
||
12 | |||
13 | public Uri Icon { get; set; } |
||
14 | |||
15 | public string Tooltip { get; set; } |
||
16 | |||
17 | public string GroupName { get; set; } |
||
18 | } |
||
19 | } |