using System.Text.Json.Serialization; namespace SPMS.Application.DTOs.Auth; public class LogoutResponseDto { [JsonPropertyName("logged_out")] public bool LoggedOut { get; set; } [JsonPropertyName("redirect_to")] public string RedirectTo { get; set; } = "/login"; }