mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 23:53:19 +08:00
21 lines
658 B
C#
21 lines
658 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.WindowsAzure.Storage.Table;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class EventTableEntity : TableEntity
|
|
{
|
|
public DateTime Date { get; set; }
|
|
public int Type { get; set; }
|
|
public Guid? UserId { get; set; }
|
|
public Guid? OrganizationId { get; set; }
|
|
public Guid? CipherId { get; set; }
|
|
public ICollection<Guid> CipherIds { get; set; }
|
|
public Guid? CollectionId { get; set; }
|
|
public Guid? GroupId { get; set; }
|
|
public Guid? OrganizationUserId { get; set; }
|
|
public Guid? ActingUserId { get; set; }
|
|
}
|
|
}
|