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