Добавьте файлы проекта.
This commit is contained in:
12
PlaylistShared.Shared/DTO/ExternalLoginCallbackRequest.cs
Normal file
12
PlaylistShared.Shared/DTO/ExternalLoginCallbackRequest.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace PlaylistShared.Shared.DTO;
|
||||
|
||||
public class ExternalLoginCallbackRequest
|
||||
{
|
||||
[JsonPropertyName("code")]
|
||||
public string Code { get; set; } = null!;
|
||||
|
||||
[JsonPropertyName("state")]
|
||||
public string State { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user