mirror of
https://github.com/bitwarden/server.git
synced 2025-04-25 23:02:17 -05:00

* Enable `nullable` in `ISubscriber` * Enable `nullable` in `Group` * Enable `nullable` in `GroupUser` * Enable `nullable` in `Organization` * Enable `nullable` in `OrganizationUser` * Enable `nullable` in `Policy` * Enable `nullable` in `Provider` * Enable `nullable` in `ProviderOrganization` * Enable `nullable` in `ProviderUser` * Update Tests * Formatting * Update TwoFactor Tests * Fix Scim Tests * Format * Add Migrations * Format
10 lines
178 B
C#
10 lines
178 B
C#
namespace Bit.Core.AdminConsole.Entities;
|
|
|
|
#nullable enable
|
|
|
|
public class GroupUser
|
|
{
|
|
public Guid GroupId { get; set; }
|
|
public Guid OrganizationUserId { get; set; }
|
|
}
|