mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 07:33:11 +08:00
13 lines
304 B
C#
13 lines
304 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using Bit.Core.Models.Table;
|
|||
|
|
using Core.Models.Data;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.Data
|
|||
|
|
{
|
|||
|
|
public class EmergencyAccessViewData
|
|||
|
|
{
|
|||
|
|
public EmergencyAccess EmergencyAccess { get; set; }
|
|||
|
|
public IEnumerable<CipherDetails> Ciphers { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|