mirror of
https://github.com/bitwarden/server.git
synced 2025-04-22 05:25:10 -05:00
13 lines
256 B
C#
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; }
|
|
}
|
|
}
|