using MagicOnion; using DysonNetwork.Shared.Models; using System; using System.Collections.Generic; using System.Threading.Tasks; namespace DysonNetwork.Shared.Services; public interface ICustomAppService : IService { Task FindClientByIdAsync(Guid clientId); Task CountCustomAppsByPublisherId(Guid publisherId); }