mirror of
https://github.com/bitwarden/server
synced 2025-12-17 16:53:23 +00:00
19 lines
518 B
C#
19 lines
518 B
C#
using Bit.Core.Enums;
|
|
using System;
|
|
|
|
namespace Core.Models.Data
|
|
{
|
|
public 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; }
|
|
}
|
|
}
|