mirror of
https://github.com/bitwarden/server.git
synced 2024-12-04 14:13:28 +01:00
12 lines
210 B
C#
12 lines
210 B
C#
|
using System;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Bit.Core.Enums;
|
|||
|
|
|||
|
namespace Bit.Core.Services
|
|||
|
{
|
|||
|
public interface IEventService
|
|||
|
{
|
|||
|
Task LogUserEventAsync(Guid userId, EventType type);
|
|||
|
}
|
|||
|
}
|