1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 08:02:49 -05:00

Organization User Accepted Invite Email Notifications (#1465)

This commit is contained in:
Addison Beck
2021-07-16 13:49:27 -04:00
committed by GitHub
parent 7abb053914
commit 5ec37b96b4
12 changed files with 99 additions and 16 deletions

View File

@ -1,8 +1,11 @@
namespace Bit.Core.Models.Mail
using System;
namespace Bit.Core.Models.Mail
{
public class OrganizationUserAcceptedViewModel : BaseMailModel
{
public Guid OrganizationId { get; set; }
public string OrganizationName { get; set; }
public string UserEmail { get; set; }
public string UserIdentifier { get; set; }
}
}