Files
server/src/Core/Models/Business/ImportedGroup.cs

12 lines
251 B
C#
Raw Normal View History

2017-05-16 00:11:21 -04:00
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; }
}
}