mirror of
https://github.com/bitwarden/server.git
synced 2025-04-18 19:48:12 -05:00
8 lines
147 B
C#
8 lines
147 B
C#
namespace Bit.Core.Entities;
|
|
|
|
public class GroupUser
|
|
{
|
|
public Guid GroupId { get; set; }
|
|
public Guid OrganizationUserId { get; set; }
|
|
}
|