mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
14 lines
281 B
C#
14 lines
281 B
C#
using Bit.Scim.Utilities;
|
|
|
|
namespace Bit.Scim.Models;
|
|
|
|
public class ScimErrorResponseModel : BaseScimModel
|
|
{
|
|
public ScimErrorResponseModel()
|
|
: base(ScimConstants.Scim2SchemaError)
|
|
{ }
|
|
|
|
public string Detail { get; set; }
|
|
public int Status { get; set; }
|
|
}
|