using System.Text.Json.Serialization;
namespace Galaeth.ApiServer.Models.Common;
///
/// Basic result model.
///
public class ResultModel
{
///
/// True if successful, false otherwise.
///
[JsonPropertyName("success")]
public bool Success { get; set; }
}