20 lines
445 B
C#
20 lines
445 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MobileApp
|
|
{
|
|
public class FlyoutPage1FlyoutMenuItem
|
|
{
|
|
public FlyoutPage1FlyoutMenuItem()
|
|
{
|
|
TargetType = typeof(FlyoutPage1FlyoutMenuItem);
|
|
}
|
|
public int Id { get; set; }
|
|
public string Title { get; set; }
|
|
|
|
public Type TargetType { get; set; }
|
|
}
|
|
} |