mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 06:03:12 +08:00
14 lines
429 B
C#
14 lines
429 B
C#
|
|
namespace Bit.SeederApi.Queries.Interfaces;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Query for retrieving all play IDs for currently tracked seeded data.
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IGetAllPlayIdsQuery
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Retrieves all play IDs for currently tracked seeded data.
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns>A list of play IDs representing active seeded data that can be destroyed.</returns>
|
|||
|
|
List<string> GetAllPlayIds();
|
|||
|
|
}
|