0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 09:50:43 -05:00
launcher/project/Aki.Launcher/Attributes/NavigationPreCondition.cs

14 lines
357 B
C#
Raw Normal View History

2023-03-03 19:25:33 +00:00
using Aki.Launcher.Models;
using Aki.Launcher.ViewModels;
using ReactiveUI;
using System;
namespace Aki.Launcher.Attributes
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public abstract class NavigationPreCondition : Attribute
{
public abstract NavigationPreConditionResult TestPreCondition(IScreen Host);
}
}