Files
Wino-Mail/Wino.Core.Domain/Models/Navigation/ShellModeActivationContext.cs
T

11 lines
263 B
C#
Raw Normal View History

#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; }
public bool SuppressStartupFlows { get; init; }
public object? Parameter { get; init; }
2026-03-11 01:39:32 +01:00
}