project reorganized
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WatchIt.Common.Model.Accounts;
|
||||
|
||||
public class AuthenticateResponse
|
||||
{
|
||||
#region PROPERTIES
|
||||
|
||||
[JsonPropertyName("access_token")]
|
||||
public required string AccessToken { get; init; }
|
||||
|
||||
[JsonPropertyName("refresh_token")]
|
||||
public required string RefreshToken { get; init; }
|
||||
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user