2026-04-04 20:23:20 +02:00
|
|
|
#nullable enable
|
|
|
|
|
|
2026-03-11 01:39:32 +01:00
|
|
|
namespace Wino.Core.Domain.Models.Navigation;
|
|
|
|
|
|
|
|
|
|
public sealed class ShellModeActivationContext
|
|
|
|
|
{
|
|
|
|
|
public bool IsInitialActivation { get; init; }
|
2026-04-04 20:23:20 +02:00
|
|
|
public bool SuppressStartupFlows { get; init; }
|
|
|
|
|
public object? Parameter { get; init; }
|
2026-03-11 01:39:32 +01:00
|
|
|
}
|