mirror of https://github.com/quasar/Quasar.git
12 lines
212 B
C#
12 lines
212 B
C#
|
using ProtoBuf;
|
|||
|
|
|||
|
namespace Quasar.Common.Packets
|
|||
|
{
|
|||
|
[ProtoContract]
|
|||
|
public class GetSystemInfoResponse : IPacket
|
|||
|
{
|
|||
|
[ProtoMember(1)]
|
|||
|
public string[] SystemInfos { get; set; }
|
|||
|
}
|
|||
|
}
|