mirror of
https://github.com/bitwarden/server.git
synced 2026-02-15 05:13:30 +08:00
11 lines
156 B
C#
11 lines
156 B
C#
|
|
using System;
|
|||
|
|
using Bit.Core.Enums;
|
|||
|
|
|
|||
|
|
namespace Bit.Events.Models
|
|||
|
|
{
|
|||
|
|
public class EventModel
|
|||
|
|
{
|
|||
|
|
public EventType Type { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|