mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
15 lines
359 B
C#
15 lines
359 B
C#
using Bit.App.Abstractions;
|
|
|
|
namespace Bit.App.Utilities.AccountManagement
|
|
{
|
|
public class HomeNavigationParams : INavigationParams
|
|
{
|
|
public HomeNavigationParams(bool shouldCheckRememberEmail)
|
|
{
|
|
ShouldCheckRememberEmail = shouldCheckRememberEmail;
|
|
}
|
|
|
|
public bool ShouldCheckRememberEmail { get; }
|
|
}
|
|
}
|