mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 15:45:19 +08:00
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; }
|
|||
|
|
}
|
|||
|
|
}
|