galaeth-draft/Galaeth.ApiServer/Models/Common/ResultModel.cs

16 lines
319 B
C#
Raw Normal View History

2024-11-17 10:31:01 +01:00
using System.Text.Json.Serialization;
namespace Galaeth.ApiServer.Models.Common;
/// <summary>
/// Basic result model.
/// </summary>
public class ResultModel
{
/// <summary>
/// True if successful, false otherwise.
/// </summary>
[JsonPropertyName("success")]
public bool Success { get; set; }
}