mirror of
https://github.com/jwetzell/qController.git
synced 2026-07-26 10:38:50 +00:00
12 lines
200 B
C#
12 lines
200 B
C#
|
|
namespace qController
|
|
{
|
|
public class MenuPageItem
|
|
{
|
|
public string Title { get; set; }
|
|
public string Icon { get; set; }
|
|
public string Command { get; set; }
|
|
}
|
|
}
|
|
|