astral-api/Astral.ApiServer/Models/Common/ResultModel.cs

19 lines
458 B
C#

// <copyright file="ResultModel.cs" company="alveus.dev">
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
// </copyright>
using System.Text.Json.Serialization;
namespace Astral.ApiServer.Models.Common;
/// <summary>
/// Generic result model.
/// </summary>
public class ResultModel
{
/// <summary>
/// Indicate success.
/// </summary>
[JsonPropertyName("success")]
public bool Success { get; set; }
}