mirror of
https://github.com/bitwarden/server
synced 2025-12-18 01:03:17 +00:00
11 lines
180 B
C#
11 lines
180 B
C#
using System;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class SelectionReadOnly
|
|
{
|
|
public Guid Id { get; set; }
|
|
public bool ReadOnly { get; set; }
|
|
}
|
|
}
|