mirror of
https://github.com/bitwarden/server.git
synced 2026-02-11 11:23:14 +08:00
10 lines
193 B
C#
10 lines
193 B
C#
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.Models.Data;
|
|
|
|
public class CollectionDetails : Collection
|
|
{
|
|
public bool ReadOnly { get; set; }
|
|
public bool HidePasswords { get; set; }
|
|
}
|