11 lines
263 B
C#
11 lines
263 B
C#
#nullable enable
|
|
|
|
namespace Wino.Core.Domain.Models.Navigation;
|
|
|
|
public sealed class ShellModeActivationContext
|
|
{
|
|
public bool IsInitialActivation { get; init; }
|
|
public bool SuppressStartupFlows { get; init; }
|
|
public object? Parameter { get; init; }
|
|
}
|