mirror of
https://github.com/bitwarden/server
synced 2025-12-25 12:43:14 +00:00
* Add support for Emergency Access * Add migration script * Review comments * Ensure grantor has premium when inviting new grantees. * Resolve review comments * Remove two factor references
15 lines
327 B
C#
15 lines
327 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Models.Table;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class EmergencyAccessNotify : EmergencyAccess
|
|
{
|
|
public string GrantorEmail { get; set; }
|
|
public string GranteeName { get; set; }
|
|
}
|
|
}
|