Files
Troll-V2/Quasar.Common/Messages/ClientIdentificationResult.cs
T

12 lines
210 B
C#
Raw Normal View History

2026-08-27 11:22:16 -06:00
using ProtoBuf;
namespace Quasar.Common.Messages
{
[ProtoContract]
public class ClientIdentificationResult : IMessage
{
[ProtoMember(1)]
public bool Result { get; set; }
}
}