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

10 lines
171 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; }
}
}