mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-06 16:03:48 +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; }
|
|
}
|
|
}
|
|
|