Add hashing and other security features #12
10
Security/Common/Dto/Responses/AuthTokenResponse.cs
Normal file
10
Security/Common/Dto/Responses/AuthTokenResponse.cs
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
using System;
|
||||||
|
|
||||||
|
namespace Mirea.Api.Security.Common.Dto.Responses;
|
||||||
|
|
||||||
|
public class AuthTokenResponse
|
||||||
|
{
|
||||||
|
public required string AccessToken { get; set; }
|
||||||
|
public required string RefreshToken { get; set; }
|
||||||
|
public DateTime ExpiresIn { get; set; }
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user