mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 23:23:15 +08:00
* feat(newDeviceVerification) : Initial update to email * fix : email copying over extra whitespace when using keyboard short cuts * test : Fixing tests for new device verificaiton email format
7 lines
143 B
C#
7 lines
143 B
C#
namespace Bit.Core.Models.Mail;
|
|
|
|
public class UserVerificationEmailTokenViewModel : BaseMailModel
|
|
{
|
|
public string Token { get; set; }
|
|
}
|