mirror of
https://github.com/bitwarden/server.git
synced 2025-04-08 22:58:11 -05:00
14 lines
304 B
C#
14 lines
304 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Models.Table;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface IEventService
|
|
{
|
|
Task LogUserEventAsync(Guid userId, EventType type);
|
|
Task LogCipherEventAsync(Cipher cipher, EventType type);
|
|
}
|
|
}
|