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

11 lines
219 B
C#
Raw Normal View History

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