mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 23:23:15 +08:00
14 lines
310 B
C#
14 lines
310 B
C#
using Bit.Core.Models.Table;
|
|
using System;
|
|
|
|
namespace Core.Models.Data
|
|
{
|
|
public class CipherDetails : Cipher
|
|
{
|
|
public Guid? FolderId { get; set; }
|
|
public bool Favorite { get; set; }
|
|
public bool Edit { get; set; }
|
|
public bool OrganizationUseTotp { get; set; }
|
|
}
|
|
}
|