mirror of
https://github.com/bitwarden/server.git
synced 2025-07-05 01:52:49 -05:00
10 lines
174 B
C#
10 lines
174 B
C#
using System.Data;
|
|
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.Models.Data;
|
|
|
|
public class GroupWithCollections : Group
|
|
{
|
|
public DataTable Collections { get; set; }
|
|
}
|