mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 23:52:50 -05: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