1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-08 03:23:23 +00:00

events url

This commit is contained in:
Kyle Spearrin
2019-06-25 16:36:21 -04:00
parent 72cbdcbc8d
commit 3f94eee4d5
8 changed files with 117 additions and 11 deletions

View File

@@ -0,0 +1,11 @@
using Bit.Core.Enums;
using Bit.Core.Models.Domain;
namespace Bit.Core.Models.Request
{
public class EventRequest
{
public EventType Type { get; set; }
public string CipherId { get; set; }
}
}