mirror of
https://github.com/bitwarden/server.git
synced 2026-02-04 16:13:12 +08:00
12 lines
217 B
C#
12 lines
217 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; }
|
|
}
|
|
}
|