using System.Threading.Tasks; using Plugins.Countly.Helpers; namespace Plugins.Countly.Services { public interface IViewCountlyService { Task RecordOpenViewAsync(string name, bool hasSessionBegunWithView = false); Task RecordCloseViewAsync(string name, bool hasSessionBegunWithView = false); } }