mirror of
https://github.com/bitwarden/server
synced 2026-01-08 11:33:26 +00:00
12 lines
247 B
C#
12 lines
247 B
C#
using System.Collections.Generic;
|
|
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.Models.Business
|
|
{
|
|
public class ImportedGroup
|
|
{
|
|
public Group Group { get; set; }
|
|
public HashSet<string> ExternalUserIds { get; set; }
|
|
}
|
|
}
|