demo-xf-app-1a/MobileApp1/Models/FlyoutPageItem.cs

14 lines
224 B
C#
Raw Permalink Normal View History

2021-08-02 21:49:48 +00:00
using System;
namespace MobileApp1.Models
{
public class FlyoutPageItem
{
public string Title { get; set; }
public string Icon { get; set; }
public Type TargetType { get; set; }
}
}