Files
2024-06-16 13:57:50 +03:00

9 lines
167 B
C#
Executable File

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