mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-08-02 13:37:47 +00:00
9 lines
168 B
C#
9 lines
168 B
C#
|
|
namespace MtApi5.MtProtocol
|
||
|
|
{
|
||
|
|
internal class FuncResult<T>
|
||
|
|
{
|
||
|
|
public bool RetVal { get; set; }
|
||
|
|
public T? Result { get; set; }
|
||
|
|
}
|
||
|
|
}
|