1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-05 01:52:49 -05:00
Files
bitwarden/src/Core/Models/Data/EmergencyAccessNotify.cs
2022-08-29 16:06:55 -04:00

11 lines
253 B
C#

using Bit.Core.Entities;
namespace Bit.Core.Models.Data;
public class EmergencyAccessNotify : EmergencyAccess
{
public string GrantorEmail { get; set; }
public string GranteeName { get; set; }
public string GranteeEmail { get; set; }
}