mirror of
https://github.com/bitwarden/server
synced 2026-01-09 20:13:24 +00:00
11 lines
214 B
C#
11 lines
214 B
C#
using System.Data;
|
|
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class OrganizationUserWithCollections : OrganizationUser
|
|
{
|
|
public DataTable Collections { get; set; }
|
|
}
|
|
}
|