mirror of
https://github.com/bitwarden/server.git
synced 2026-02-05 00:23:24 +08:00
14 lines
315 B
C#
14 lines
315 B
C#
using System;
|
|
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.Core.Models.Table
|
|
{
|
|
public class CollectionUser
|
|
{
|
|
public Guid CollectionId { get; set; }
|
|
public Guid OrganizationUserId { get; set; }
|
|
public bool ReadOnly { get; set; }
|
|
public bool HidePasswords { get; set; }
|
|
}
|
|
}
|