mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 07:33:11 +08:00
14 lines
378 B
C#
14 lines
378 B
C#
|
|
using System;
|
|||
|
|
using Bit.Core.Models.Table;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Repositories
|
|||
|
|
{
|
|||
|
|
public interface ISendRepository : IRepository<Send, Guid>
|
|||
|
|
{
|
|||
|
|
Task<ICollection<Send>> GetManyByUserIdAsync(Guid userId);
|
|||
|
|
Task<ICollection<Send>> GetManyByDeletionDateAsync(DateTime deletionDateBefore);
|
|||
|
|
}
|
|||
|
|
}
|