15 lines
281 B
C#
15 lines
281 B
C#
|
using System;
|
||
|
|
||
|
namespace Game.Data
|
||
|
{
|
||
|
public class S2C_StartNewGame : PassiveResponse
|
||
|
{
|
||
|
public new S2C_StartNewGameInfo data;
|
||
|
|
||
|
public class S2C_StartNewGameInfo
|
||
|
{
|
||
|
public string lunId;
|
||
|
public DateTime nowTime;
|
||
|
}
|
||
|
}
|
||
|
}
|