sharee.bike-App/Meinkonrad/TINK/View/RootFlyout/RootPageFlyoutMenuItem.cs

20 lines
328 B
C#
Raw Normal View History

2021-11-07 19:42:59 +01:00
using System;
namespace TINK.View.Root
{
2022-09-06 16:08:19 +02:00
public class RootPageFlyoutMenuItem
{
public RootPageFlyoutMenuItem()
{
TargetType = typeof(RootPageFlyoutMenuItem);
}
public int Id { get; set; }
2021-11-07 19:42:59 +01:00
2022-09-06 16:08:19 +02:00
public string GlyphCode { get; set; }
2021-11-07 19:42:59 +01:00
2022-09-06 16:08:19 +02:00
public string Title { get; set; }
2021-11-07 19:42:59 +01:00
2022-09-06 16:08:19 +02:00
public Type TargetType { get; set; }
}
2021-11-07 19:42:59 +01:00
}