14 lines
224 B
C#
14 lines
224 B
C#
using System;
|
|
|
|
namespace MobileApp1.Models
|
|
{
|
|
public class FlyoutPageItem
|
|
{
|
|
public string Title { get; set; }
|
|
|
|
public string Icon { get; set; }
|
|
|
|
public Type TargetType { get; set; }
|
|
}
|
|
}
|