Files
2024-01-14 21:57:07 +02:00

9 lines
168 B
C#
Executable File

namespace MtApi5.MtProtocol
{
internal class FuncResult<T>
{
public bool RetVal { get; set; }
public T? Result { get; set; }
}
}