Files

11 lines
246 B
C#
Raw Permalink Normal View History

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