summaryrefslogtreecommitdiffstats
path: root/generator/plugins/dotnet/custom/IResponse.cs
blob: 01ecf3e7d9aeb71b8e4b402c6b72d4718b63ec67 (plain)
1
2
3
4
5
6
7
8
9
public interface IResponse<TResponse> : IMessage
{

    OrType<string, int> Id { get; }

    TResponse? Result { get; }

    ResponseError? Error { get; }
}