// // Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License. // using System.Text.Json.Serialization; namespace Astral.ApiServer.Models.Common; /// /// Error result model. /// public class ErrorResultModel { /// /// Status: failure. /// [JsonPropertyName("status")] public const string Status = "failure"; /// /// Error code. /// [JsonPropertyName("error")] public string Error { get; set; } /// /// Error message. /// [JsonPropertyName("message")] public string Message { get; set; } }