1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-24 22:32:22 -05:00
bitwarden/src/Core/Models/Mail/VerifyEmailModel.cs
2017-07-01 23:20:19 -04:00

16 lines
348 B
C#

using System;
namespace Bit.Core.Models.Mail
{
public class VerifyEmailModel : BaseMailModel
{
public string Url => string.Format("{0}/verify-email?userId={1}&token={2}",
WebVaultUrl,
UserId,
Token);
public Guid UserId { get; set; }
public string Token { get; set; }
}
}