1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-15 01:41:40 +01:00
bitwarden-server/src/Core/Models/Data/CipherDetails.cs

13 lines
293 B
C#

using System;
namespace Core.Models.Data
{
public class CipherDetails : CipherOrganizationDetails
{
public Guid? FolderId { get; set; }
public bool Favorite { get; set; }
public bool Edit { get; set; }
public bool ViewPassword { get; set; }
}
}