21 lines
573 B
C#
21 lines
573 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace LeanCloud.Realtime.Internal
|
|||
|
{
|
|||
|
internal class PushRouterState
|
|||
|
{
|
|||
|
public string groupId { get; internal set; }
|
|||
|
public string server { get; internal set; }
|
|||
|
public long ttl { get; internal set; }
|
|||
|
public long expire { get; internal set; }
|
|||
|
public string secondary { get; internal set; }
|
|||
|
public string groupUrl { get; internal set; }
|
|||
|
|
|||
|
public string source { get; internal set; }
|
|||
|
}
|
|||
|
}
|