//
// 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
{
///
/// Indicate success.
///
[JsonPropertyName("success")]
public bool Success { get; set; }
}