summaryrefslogtreecommitdiffstats
path: root/generator/plugins/dotnet/custom/INotification.cs
blob: b287767d9384d76dfeb2173b212215413bba9dbf (plain)
1
2
3
4
5
6
public interface INotification<TParams> : IMessage
{
    string Method { get; }

    TParams? Params { get; }
}