mirror of
https://github.com/bitwarden/server
synced 2025-12-25 12:43:14 +00:00
12 lines
228 B
C#
12 lines
228 B
C#
using System;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class SelectionReadOnly
|
|
{
|
|
public Guid Id { get; set; }
|
|
public bool ReadOnly { get; set; }
|
|
public bool HidePasswords { get; set; }
|
|
}
|
|
}
|