mirror of
https://github.com/bitwarden/server
synced 2025-12-23 19:53:40 +00:00
11 lines
219 B
C#
11 lines
219 B
C#
using Bit.Core.Models.Table;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class CollectionDetails : Collection
|
|
{
|
|
public bool ReadOnly { get; set; }
|
|
public bool HidePasswords { get; set; }
|
|
}
|
|
}
|