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

12 lines
228 B
C#
Raw Normal View History

2017-03-11 22:42:27 -05:00
using System;
namespace Bit.Core.Models.Data
{
public class SelectionReadOnly
2017-03-11 22:42:27 -05:00
{
public Guid Id { get; set; }
public bool ReadOnly { get; set; }
public bool HidePasswords { get; set; }
2017-03-11 22:42:27 -05:00
}
}