mirror of https://github.com/quasar/Quasar.git
22 lines
509 B
C#
22 lines
509 B
C#
using ProtoBuf;
|
|
|
|
namespace xServer.Core.Packets.ClientPackets
|
|
{
|
|
[ProtoContract]
|
|
public class GetSystemInfoResponse : IPacket
|
|
{
|
|
[ProtoMember(1)]
|
|
public string[] SystemInfos { get; set; }
|
|
|
|
public GetSystemInfoResponse() { }
|
|
public GetSystemInfoResponse(string[] systeminfos)
|
|
{
|
|
this.SystemInfos = systeminfos;
|
|
}
|
|
|
|
public void Execute(Client client)
|
|
{
|
|
client.Send<GetSystemInfoResponse>(this);
|
|
}
|
|
}
|
|
} |