mirror of
https://github.com/bitwarden/server.git
synced 2026-02-11 19:33:21 +08:00
13 lines
293 B
C#
13 lines
293 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
using System.Data;
|
|
using Bit.Core.AdminConsole.Entities;
|
|
|
|
namespace Bit.Core.AdminConsole.Models.Data;
|
|
|
|
public class GroupWithCollections : Group
|
|
{
|
|
public DataTable Collections { get; set; }
|
|
}
|