Quasar/Quasar.Common/Messages/GetSystemInfoResponse.cs

14 lines
281 B
C#
Raw Normal View History

2018-08-18 16:55:25 +00:00
using ProtoBuf;
using System;
using System.Collections.Generic;
2018-08-18 16:55:25 +00:00
2018-08-25 16:12:44 +00:00
namespace Quasar.Common.Messages
2018-08-18 16:55:25 +00:00
{
[ProtoContract]
2018-08-25 16:12:44 +00:00
public class GetSystemInfoResponse : IMessage
2018-08-18 16:55:25 +00:00
{
[ProtoMember(1)]
public List<Tuple<string, string>> SystemInfos { get; set; }
2018-08-18 16:55:25 +00:00
}
}