mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 00:22:50 -05:00
organize event models. stub out event services
This commit is contained in:
16
src/Core/Models/Data/EventTableEntity.cs
Normal file
16
src/Core/Models/Data/EventTableEntity.cs
Normal file
@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user