mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 15:45:19 +08:00
13 lines
285 B
C#
13 lines
285 B
C#
using System;
|
|
|
|
namespace Bit.Core.Entities
|
|
{
|
|
public class CollectionUser
|
|
{
|
|
public Guid CollectionId { get; set; }
|
|
public Guid OrganizationUserId { get; set; }
|
|
public bool ReadOnly { get; set; }
|
|
public bool HidePasswords { get; set; }
|
|
}
|
|
}
|