// // 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 ResultModel { /// /// Either "success" or "failure". /// [JsonPropertyName("status")] public string Status { get; set; } }