mirror of
https://github.com/bitwarden/server
synced 2026-01-02 08:33:48 +00:00
This reverts commit f11c58e396.
This commit is contained in:
@@ -1,27 +0,0 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Bit.Core.Models.Api.Response.Duo;
|
||||
|
||||
public class DuoResponseModel
|
||||
{
|
||||
[JsonPropertyName("stat")]
|
||||
public string Stat { get; set; }
|
||||
|
||||
[JsonPropertyName("code")]
|
||||
public int? Code { get; set; }
|
||||
|
||||
[JsonPropertyName("message")]
|
||||
public string Message { get; set; }
|
||||
|
||||
[JsonPropertyName("message_detail")]
|
||||
public string MessageDetail { get; set; }
|
||||
|
||||
[JsonPropertyName("response")]
|
||||
public Response Response { get; set; }
|
||||
}
|
||||
|
||||
public class Response
|
||||
{
|
||||
[JsonPropertyName("time")]
|
||||
public int Time { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user