16 lines
397 B
C#
16 lines
397 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WorkStation.Share
|
|
{
|
|
public class ApiResponse(bool success, string? message, object? data)
|
|
{
|
|
public bool Success { get; set; } = success;
|
|
public string? Message { get; set; } = message;
|
|
public object? Data { get; set; } = data;
|
|
}
|
|
}
|