mirror of
https://github.com/bitwarden/server.git
synced 2025-04-29 00:32:18 -05:00
12 lines
251 B
C#
12 lines
251 B
C#
using Bit.Core.Models.Table;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Bit.Core.Models.Business
|
|
{
|
|
public class ImportedGroup
|
|
{
|
|
public Group Group { get; set; }
|
|
public HashSet<string> ExternalUserIds { get; set; }
|
|
}
|
|
}
|