using System.Text.Json.Serialization; namespace Galaeth.ApiServer.Models.Common; /// /// Result with data model. /// /// The data type being returned. public class DataResultModel : ResultModel where TDataType : class { /// /// Included data payload. /// [JsonPropertyName("data")] public TDataType Data { get; set; } }