1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-06 02:23:57 +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

@@ -8,5 +8,6 @@
public string Icons { get; set; }
public string Notifications { get; set; }
public string WebVault { get; set; }
public string Events { get; set; }
}
}

View File

@@ -5,5 +5,6 @@
public string Base { get; set; }
public string Api { get; set; }
public string Identity { get; set; }
public string Events { get; set; }
}
}

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