mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-01 00:46:33 +01:00
20 lines
No EOL
388 B
C#
20 lines
No EOL
388 B
C#
using System;
|
|
|
|
namespace TINK.View.Root
|
|
{
|
|
|
|
public class RootPageFlyoutMenuItem
|
|
{
|
|
public RootPageFlyoutMenuItem()
|
|
{
|
|
TargetType = typeof(RootPageFlyoutMenuItem);
|
|
}
|
|
public int Id { get; set; }
|
|
|
|
public string GlyphCode { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
|
|
public Type TargetType { get; set; }
|
|
}
|
|
} |