mirror of
https://github.com/bitwarden/server.git
synced 2026-06-01 12:26:46 -05:00
19 lines
508 B
C#
19 lines
508 B
C#
namespace Bit.Seeder.Models;
|
|
|
|
/// <summary>
|
|
/// Internal result produced by the recipe pipeline, carrying entity IDs and counts before being mapped to a public result type.
|
|
/// </summary>
|
|
internal record PipelineExecutionResult(
|
|
Guid? OrganizationId,
|
|
Guid? UserId,
|
|
string? OwnerEmail,
|
|
string? UserApiKey,
|
|
string? OrganizationApiKey,
|
|
string? Password,
|
|
bool Premium,
|
|
int UsersCount,
|
|
int GroupsCount,
|
|
int CollectionsCount,
|
|
int CiphersCount,
|
|
int FoldersCount);
|