2017-12-01 09:22:04 -05:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using Microsoft.WindowsAzure.Storage.Table;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Models.Data
|
|
|
|
|
|
{
|
|
|
|
|
|
public class EventTableEntity : TableEntity
|
|
|
|
|
|
{
|
2017-12-01 10:07:14 -05:00
|
|
|
|
public int Type { get; set; }
|
2017-12-01 09:22:04 -05:00
|
|
|
|
public Guid? UserId { get; set; }
|
|
|
|
|
|
public Guid? OrganizationId { get; set; }
|
|
|
|
|
|
public Guid? CipherId { get; set; }
|
|
|
|
|
|
public ICollection<Guid> CipherIds { get; set; }
|
2017-12-01 16:00:30 -05:00
|
|
|
|
public Guid? CollectionId { get; set; }
|
|
|
|
|
|
public Guid? GroupId { get; set; }
|
|
|
|
|
|
public Guid? OrganizationUserId { get; set; }
|
2017-12-01 14:06:16 -05:00
|
|
|
|
public Guid? ActingUserId { get; set; }
|
2017-12-01 09:22:04 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|