Files
server/src/Core/Models/Data/CollectionDetails.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
193 B
C#
Raw Normal View History

using Bit.Core.Entities;
2018-06-11 14:25:53 -04:00
namespace Bit.Core.Models.Data;
2022-08-29 16:06:55 -04:00
2018-06-11 14:25:53 -04:00
public class CollectionDetails : Collection
{
public bool ReadOnly { get; set; }
public bool HidePasswords { get; set; }
2018-06-11 14:25:53 -04:00
}