summaryrefslogtreecommitdiffstats
path: root/generator/plugins/dotnet/custom/IRequest.cs
blob: 55fcbd8d833c5c4110bbb873a13159b176925919 (plain)
1
2
3
4
5
6
7
8
9
public interface IRequest<TParams> : IMessage
{

    OrType<string, int> Id { get; }

    string Method { get; }

    TParams Params { get; }
}