You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
765 B
35 lines
765 B
1 month ago
|
/*
|
||
|
Sog 游戏基础库
|
||
|
2016 by zouwei
|
||
|
*/
|
||
|
|
||
|
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
|
||
|
namespace SogClient
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Request message package
|
||
|
/// </summary>
|
||
|
public class RequestPacket
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// init
|
||
|
/// </summary>
|
||
|
public RequestPacket(int msgId, int seqId, uint sessionId)
|
||
|
{
|
||
|
MsgID = msgId;
|
||
|
SeqID = seqId;
|
||
|
SessionID = sessionId;
|
||
|
ReceiveTime = DateTime.Now;
|
||
|
}
|
||
|
|
||
|
public int MsgID { get; protected set; }
|
||
|
public int SeqID { get; protected set; }
|
||
|
public uint SessionID { get; protected set; }
|
||
|
public object Packet { get; set; }
|
||
|
public DateTime ReceiveTime { get; protected set; }
|
||
|
}
|
||
|
}
|