Files
server/src/Core/Models/Data/CipherDetails.cs

14 lines
310 B
C#
Raw Normal View History

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; }
2017-05-06 23:23:01 -04:00
public bool Edit { get; set; }
2017-07-07 14:08:30 -04:00
public bool OrganizationUseTotp { get; set; }
}
}