Files
server/src/Core/Models/Data/EventTableEntity.cs

20 lines
615 B
C#
Raw Normal View History

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; }
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; }
2017-12-01 14:06:16 -05:00
public Guid? ActingUserId { get; set; }
}
}