1
0
mirror of https://github.com/bitwarden/server synced 2025-12-20 02:03:46 +00:00

setup to receive & process event postings

This commit is contained in:
Kyle Spearrin
2017-12-04 10:59:07 -05:00
parent 31d0caf73e
commit 9cb1047f2b
12 changed files with 189 additions and 30 deletions

View File

@@ -0,0 +1,10 @@
using System;
using Bit.Core.Enums;
namespace Bit.Events.Models
{
public class EventModel
{
public EventType Type { get; set; }
}
}