mirror of
https://github.com/bitwarden/server
synced 2026-01-10 04:23:31 +00:00
10 lines
333 B
C#
10 lines
333 B
C#
namespace Bit.Core.Models.Mail;
|
|
|
|
public class OrganizationUserAcceptedViewModel : BaseMailModel
|
|
{
|
|
public Guid OrganizationId { get; set; }
|
|
public string OrganizationName { get; set; }
|
|
public string UserIdentifier { get; set; }
|
|
public string ConfirmUrl => $"{WebVaultUrl}/organizations/{OrganizationId}/members";
|
|
}
|