11 lines
246 B
C#
11 lines
246 B
C#
namespace WatchIt.DTO.Models.Controllers.Authentication;
|
|
|
|
public class AuthenticationResponse
|
|
{
|
|
#region PROPERTIES
|
|
|
|
public string AccessToken { get; init; } = null!;
|
|
public string RefreshToken { get; init; } = null!;
|
|
|
|
#endregion
|
|
} |