1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-22 05:25:10 -05:00
bitwarden/src/Core/Models/Data/CipherDetails.cs
2017-05-06 23:23:01 -04:00

13 lines
256 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; }
}
}