mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-02-12 11:12:44 +00:00
14 lines
483 B
C#
14 lines
483 B
C#
using System.Threading.Tasks;
|
|
using Streetwriters.Common.Helpers;
|
|
using Streetwriters.Common.Models;
|
|
using WampSharp.V2.Rpc;
|
|
|
|
namespace Streetwriters.Common.Interfaces
|
|
{
|
|
public interface IUserSubscriptionService
|
|
{
|
|
[WampProcedure("co.streetwriters.subscriptions.subscriptions.get_user_subscription")]
|
|
Task<Subscription> GetUserSubscriptionAsync(string clientId, string userId);
|
|
Subscription TransformUserSubscription(Subscription subscription);
|
|
}
|
|
} |