1
0
This repository has been archived on 2026-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
demo-xf-app-1a/MobileApp1/Models/FlyoutPageItem.cs
2021-08-02 22:49:48 +01:00

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; }
}
}