using FastReport.Cloud.FastReport.Models; using System.Collections.Generic; using System.Threading.Tasks; namespace FastReport.Cloud.FastReport { internal interface IFRCloudSubscriptionsProvider { ICollection GetSubscriptions(); #if ASYNC Task> GetSubscriptionsAsync(); #endif } }