1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-10 21:33:36 +00:00
Files
mobile/src/App/Models/Api/Request/TwoFactorEmailRequest.cs
2017-06-29 11:22:06 -04:00

9 lines
184 B
C#

namespace Bit.App.Models.Api
{
public class TwoFactorEmailRequest
{
public string Email { get; set; }
public string MasterPasswordHash { get; set; }
}
}