10 lines
151 B
C#
10 lines
151 B
C#
namespace Kreta.Client.KGR.Response
|
|
{
|
|
internal interface IResponse
|
|
{
|
|
bool IsSuccess { get; }
|
|
|
|
string Error { get; }
|
|
}
|
|
}
|