Initial commit
This commit is contained in:
10
MealPlan.Api/DTOs/Auth/RefreshRequestDto.cs
Normal file
10
MealPlan.Api/DTOs/Auth/RefreshRequestDto.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace MealPlan.Api.DTOs.Auth;
|
||||
|
||||
/// <summary>Body for <c>POST /api/auth/refresh</c> and <c>POST /api/auth/logout</c>.</summary>
|
||||
public class RefreshRequestDto
|
||||
{
|
||||
[Required]
|
||||
public string RefreshToken { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user