// // Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License. // using System.Text.Json.Serialization; namespace Astral.ApiServer.Models.Common; /// /// Generic result model. /// public class ResponseModel { /// /// Interface requires a string to represent success or failure rather than a boolean. /// [JsonPropertyName("status")] public string Status { get; set; } /// /// Indicate success. /// [JsonPropertyName("success")] public bool Success { get; set; } }