mirror of
https://github.com/bitwarden/server.git
synced 2025-04-22 13:35:10 -05:00
12 lines
249 B
C#
12 lines
249 B
C#
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Events.Models;
|
|
|
|
public class EventModel
|
|
{
|
|
public EventType Type { get; set; }
|
|
public Guid? CipherId { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public Guid? OrganizationId { get; set; }
|
|
}
|