mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 15:45:19 +08:00
17 lines
450 B
C#
17 lines
450 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using Bit.Core.Enums;
|
|||
|
|
using Microsoft.WindowsAzure.Storage.Table;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.Data
|
|||
|
|
{
|
|||
|
|
public class EventTableEntity : TableEntity
|
|||
|
|
{
|
|||
|
|
public EventType Type { get; set; }
|
|||
|
|
public Guid? UserId { get; set; }
|
|||
|
|
public Guid? OrganizationId { get; set; }
|
|||
|
|
public Guid? CipherId { get; set; }
|
|||
|
|
public ICollection<Guid> CipherIds { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|