mirror of
https://github.com/bitwarden/server.git
synced 2025-12-10 17:45:21 -06:00
22 lines
476 B
C#
22 lines
476 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
using System.Text.Json;
|
|
|
|
namespace Bit.Scim.Models;
|
|
|
|
public class ScimPatchModel : BaseScimModel
|
|
{
|
|
public ScimPatchModel()
|
|
: base() { }
|
|
|
|
public List<OperationModel> Operations { get; set; }
|
|
|
|
public class OperationModel
|
|
{
|
|
public string Op { get; set; }
|
|
public string Path { get; set; }
|
|
public JsonElement Value { get; set; }
|
|
}
|
|
}
|