mirror of
https://github.com/bitwarden/server.git
synced 2026-02-12 20:03:25 +08:00
11 lines
196 B
C#
11 lines
196 B
C#
|
|
using System.Data;
|
|||
|
|
using Bit.Core.Models.Table;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.Data
|
|||
|
|
{
|
|||
|
|
public class GroupWithCollections : Group
|
|||
|
|
{
|
|||
|
|
public DataTable Collections { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|