mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 08:10:44 -05:00
14 lines
357 B
C#
14 lines
357 B
C#
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);
|
|
}
|
|
}
|