11 lines
288 B
C#
11 lines
288 B
C#
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;
|
|
}
|