1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-22 13:35:10 -05:00
bitwarden/src/Events/Models/EventModel.cs
2022-08-29 14:53:16 -04:00

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; }
}