1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-05 01:52:49 -05:00
Files
bitwarden/src/Core/Models/Data/GroupWithCollections.cs
2022-08-29 16:06:55 -04:00

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