mirror of
https://github.com/bitwarden/server.git
synced 2025-02-15 01:41:40 +01:00
13 lines
293 B
C#
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; }
|
|
}
|
|
}
|