mirror of
https://github.com/bitwarden/server
synced 2025-12-19 01:33:20 +00:00
cipher updates
move cipher info to favorites and folders sprocs for getting shared cipher information
This commit is contained in:
18
src/Core/Models/Data/CipherDetails.cs
Normal file
18
src/Core/Models/Data/CipherDetails.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Bit.Core.Enums;
|
||||
using System;
|
||||
|
||||
namespace Core.Models.Data
|
||||
{
|
||||
class CipherDetails
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public Guid? UserId { get; set; }
|
||||
public Guid? OrganizationId { get; set; }
|
||||
public Guid? FolderId { get; set; }
|
||||
public CipherType Type { get; set; }
|
||||
public bool Favorite { get; set; }
|
||||
public string Data { get; set; }
|
||||
public DateTime CreationDate { get; set; }
|
||||
public DateTime RevisionDate { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user