mirror of
https://github.com/bitwarden/server.git
synced 2026-02-11 11:23:14 +08:00
16 lines
338 B
C#
16 lines
338 B
C#
using Bit.Core.AdminConsole.Entities;
|
|
|
|
namespace Bit.Seeder.Factories;
|
|
|
|
internal static class GroupUserSeeder
|
|
{
|
|
internal static GroupUser Create(Guid groupId, Guid organizationUserId)
|
|
{
|
|
return new GroupUser
|
|
{
|
|
GroupId = groupId,
|
|
OrganizationUserId = organizationUserId
|
|
};
|
|
}
|
|
}
|