9 lines
193 B
C#
9 lines
193 B
C#
namespace ServerLib.RDB.Handlers;
|
|
|
|
public class Response<T>
|
|
{
|
|
public bool Success { get; init; }
|
|
public T? Data { get; init; }
|
|
public string? Error { get; init; }
|
|
}
|