Files
Troll-V2/Quasar.Common/Messages/ClientIdentificationResult.cs
2026-08-27 11:22:16 -06:00

12 lines
210 B
C#

using ProtoBuf;
namespace Quasar.Common.Messages
{
[ProtoContract]
public class ClientIdentificationResult : IMessage
{
[ProtoMember(1)]
public bool Result { get; set; }
}
}