1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-21 13:05:11 -05:00
bitwarden/src/Core/Models/Data/CipherDetails.cs
2017-07-07 14:08:30 -04:00

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; }
}
}