Quasar/Quasar.Common/Packets/GetSystemInfoResponse.cs

12 lines
212 B
C#
Raw Normal View History

2018-08-18 16:55:25 +00:00
using ProtoBuf;
namespace Quasar.Common.Packets
{
[ProtoContract]
public class GetSystemInfoResponse : IPacket
{
[ProtoMember(1)]
public string[] SystemInfos { get; set; }
}
}