mirror of
https://github.com/bitwarden/server
synced 2026-01-09 20:13:24 +00:00
13 lines
300 B
C#
13 lines
300 B
C#
using System.Collections.Generic;
|
|
using Bit.Core.Entities;
|
|
using Core.Models.Data;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class EmergencyAccessViewData
|
|
{
|
|
public EmergencyAccess EmergencyAccess { get; set; }
|
|
public IEnumerable<CipherDetails> Ciphers { get; set; }
|
|
}
|
|
}
|