mirror of
https://github.com/bitwarden/server.git
synced 2025-04-24 06:25:09 -05:00
13 lines
328 B
C#
13 lines
328 B
C#
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class EmergencyAccessDetails : EmergencyAccess
|
|
{
|
|
public string GranteeName { get; set; }
|
|
public string GranteeEmail { get; set; }
|
|
public string GrantorName { get; set; }
|
|
public string GrantorEmail { get; set; }
|
|
}
|
|
}
|