initial commit
Pulsar .NET 9.0 Windows Release / build (push) Waiting to run
Mirror to Codeberg and Gitea / mirror (push) Waiting to run

This commit is contained in:
i2p
2026-08-27 10:57:58 -06:00
commit 773d05f8f1
1038 changed files with 109261 additions and 0 deletions
@@ -0,0 +1,47 @@
using MessagePack;
namespace Pulsar.Common.Messages.Other
{
[MessagePackObject]
public class ClientIdentification : IMessage
{
[Key(1)]
public string Version { get; set; }
[Key(2)]
public string OperatingSystem { get; set; }
[Key(3)]
public string AccountType { get; set; }
[Key(4)]
public string Country { get; set; }
[Key(5)]
public string CountryCode { get; set; }
[Key(6)]
public int ImageIndex { get; set; }
[Key(7)]
public string Id { get; set; }
[Key(8)]
public string Username { get; set; }
[Key(9)]
public string PcName { get; set; }
[Key(10)]
public string Tag { get; set; }
[Key(11)]
public string EncryptionKey { get; set; }
[Key(12)]
public byte[] Signature { get; set; }
[Key(13)]
public string PublicIP { get; set; }
}
}