mirror of
https://github.com/bitwarden/server.git
synced 2026-02-01 14:43:10 +08: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; }
|
|
}
|
|
}
|