- using System;
-
- namespace CI.WSANative.Notification
- {
- public class WSAPushNotificationChannel
- {
- public string Uri
- {
- get
- {
- return string.Empty;
- }
- }
-
- public DateTimeOffset ExpirationTime
- {
- get
- {
- return DateTimeOffset.MinValue;
- }
- }
-
- public void Close()
- {
- }
-
- public Action PushNotificationReceived;
- }
- }
|