mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 11:02:07 +03:00
push notification helper library
http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/01/14/windows-push-notification-server-side-helper-library.aspx http://create.msdn.com/en-us/education/catalog/article/pnhelp-wp7
This commit is contained in:
+27
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace WindowsPhone.Recipes.Push.Server.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// Server status data contract.
|
||||
/// </summary>
|
||||
[DataContract]
|
||||
public class ServerInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// Current push pattern.
|
||||
/// </summary>
|
||||
[DataMember]
|
||||
public string PushPattern { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Current tile counter value.
|
||||
/// </summary>
|
||||
[DataMember]
|
||||
public int Counter { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user