16 lines
319 B
C#
16 lines
319 B
C#
|
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; }
|
||
|
}
|