mirror of
https://github.com/bitwarden/server.git
synced 2025-04-29 08:42:19 -05:00

* send work * fix sql proj file * update * updates * access id * delete job * fix delete job * local send storage * update sprocs for null checks
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);
|
|
}
|
|
}
|