mirror of
https://github.com/bitwarden/server
synced 2025-12-24 20:23:21 +00:00
10 lines
240 B
C#
10 lines
240 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; }
|
|
}
|