2011-03-28 21:22:11 +03:00
parent a4c09735f0
commit 00f97e41d6
130 changed files with 13440 additions and 0 deletions
@@ -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; }
}
}