mirror of
https://github.com/bitwarden/mobile
synced 2025-12-16 08:13:20 +00:00
10 lines
242 B
C#
10 lines
242 B
C#
namespace Bit.Core.Models.Request
|
|
{
|
|
public class TwoFactorEmailRequest
|
|
{
|
|
public string Email { get; set; }
|
|
public string MasterPasswordHash { get; set; }
|
|
public string DeviceIdentifier { get; set; }
|
|
}
|
|
}
|