using Connected.Services; namespace Connected.ServiceModel.Client.Subscription; internal sealed class SelectSubscription : ServiceFunction { protected override async Task OnInvoke() { await Task.CompletedTask; return new Subscription { Id = 1 }; } }