using System; namespace RocPush { public interface IPushNotificationService { event Action TokenReceived; string Token { get; } void Initialize(); } }