mirror of
https://github.com/bitwarden/server.git
synced 2026-06-01 11:45:20 -05: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
|
|
};
|
|
}
|
|
}
|