mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 07:33:11 +08:00
11 lines
215 B
C#
11 lines
215 B
C#
|
|
using System.Data;
|
||
|
|
using Bit.Core.Models.Table;
|
||
|
|
|
||
|
|
namespace Bit.Core.Models.Data
|
||
|
|
{
|
||
|
|
public class OrganizationUserWithCollections : OrganizationUser
|
||
|
|
{
|
||
|
|
public DataTable Collections { get; set; }
|
||
|
|
}
|
||
|
|
}
|