mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
14 lines
365 B
C#
14 lines
365 B
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Bit.Scim.Models
|
|
{
|
|
public abstract class ScimSchemaBase
|
|
{
|
|
[JsonProperty("schemas", Order = -10)]
|
|
public virtual ISet<string> Schemas => new HashSet<string>(new[] { SchemaIdentifier });
|
|
[JsonIgnore]
|
|
public abstract string SchemaIdentifier { get; }
|
|
}
|
|
}
|