mirror of
https://github.com/bitwarden/server.git
synced 2025-05-12 15:12:16 -05: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; }
|
|
}
|
|
}
|