mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 15:45:19 +08:00
11 lines
270 B
C#
11 lines
270 B
C#
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; }
|
|
}
|
|
}
|