1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-29 00:32:18 -05:00
bitwarden/src/Core/Models/Business/ImportedGroup.cs
2017-05-16 00:11:21 -04:00

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; }
}
}