This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
Emma [it/its]@Rory& abb1b570a4 Local changes
2025-10-05 21:34:40 +02:00

18 lines
404 B
C#

using System.Text.Json.Serialization;
namespace Spacebar.AdminApi.Models;
public class AsyncActionResult {
public AsyncActionResult() { }
public AsyncActionResult(string type, object? data) {
MessageType = type;
Data = data;
}
[JsonPropertyName("type")]
public string MessageType { get; set; }
[JsonPropertyName("data")]
public object Data { get; set; }
}