mirror of
https://github.com/bitwarden/server
synced 2025-12-19 17:53:44 +00:00
12 lines
200 B
C#
12 lines
200 B
C#
using System;
|
|
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Events.Models
|
|
{
|
|
public class EventModel
|
|
{
|
|
public EventType Type { get; set; }
|
|
public Guid? CipherId { get; set; }
|
|
}
|
|
}
|