Files
server/src/Core/AdminConsole/Models/Data/GroupWithCollections.cs
2025-07-03 09:40:34 -04:00

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