mirror of
https://github.com/bitwarden/server.git
synced 2026-02-04 08:03:29 +08:00
12 lines
214 B
C#
12 lines
214 B
C#
|
|
using System;
|
|||
|
|
using Bit.Core.Utilities;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.Table
|
|||
|
|
{
|
|||
|
|
public class GroupUser
|
|||
|
|
{
|
|||
|
|
public Guid GroupId { get; set; }
|
|||
|
|
public Guid OrganizationUserId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|