mirror of
https://github.com/bitwarden/server.git
synced 2025-04-29 00:32:18 -05:00
14 lines
374 B
C#
14 lines
374 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.Repositories
|
|
{
|
|
public interface ISendRepository : IRepository<Send, Guid>
|
|
{
|
|
Task<ICollection<Send>> GetManyByUserIdAsync(Guid userId);
|
|
Task<ICollection<Send>> GetManyByDeletionDateAsync(DateTime deletionDateBefore);
|
|
}
|
|
}
|