using ProtoBuf; using System; using System.Collections.Generic; namespace Quasar.Common.Messages { [ProtoContract] public class GetSystemInfoResponse : IMessage { [ProtoMember(1)] public List> SystemInfos { get; set; } } }