mirror of
https://github.com/bitwarden/server.git
synced 2026-02-17 22:33:28 +08:00
24 lines
836 B
C#
24 lines
836 B
C#
|
|
using Bit.Core.Models.Mail;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Auth.Models.Mail;
|
|||
|
|
|
|||
|
|
public class OrganizationInitiateDeleteModel : BaseMailModel
|
|||
|
|
{
|
|||
|
|
public string Url => string.Format("{0}/verify-recover-delete-org?orgId={1}&token={2}&name={3}",
|
|||
|
|
WebVaultUrl,
|
|||
|
|
OrganizationId,
|
|||
|
|
Token,
|
|||
|
|
OrganizationNameUrlEncoded);
|
|||
|
|
|
|||
|
|
public string Token { get; set; }
|
|||
|
|
public Guid OrganizationId { get; set; }
|
|||
|
|
public string OrganizationName { get; set; }
|
|||
|
|
public string OrganizationNameUrlEncoded { get; set; }
|
|||
|
|
public string OrganizationPlan { get; set; }
|
|||
|
|
public string OrganizationSeats { get; set; }
|
|||
|
|
public string OrganizationBillingEmail { get; set; }
|
|||
|
|
public string OrganizationCreationDate { get; set; }
|
|||
|
|
public string OrganizationCreationTime { get; set; }
|
|||
|
|
public string TimeZone { get; set; }
|
|||
|
|
}
|