aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/Sdk/Account/NetworkServiceAccountId.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Horizon/Sdk/Account/NetworkServiceAccountId.cs')
-rw-r--r--src/Ryujinx.Horizon/Sdk/Account/NetworkServiceAccountId.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/Ryujinx.Horizon/Sdk/Account/NetworkServiceAccountId.cs b/src/Ryujinx.Horizon/Sdk/Account/NetworkServiceAccountId.cs
new file mode 100644
index 00000000..2512975e
--- /dev/null
+++ b/src/Ryujinx.Horizon/Sdk/Account/NetworkServiceAccountId.cs
@@ -0,0 +1,20 @@
+using System.Runtime.InteropServices;
+
+namespace Ryujinx.Horizon.Sdk.Account
+{
+ [StructLayout(LayoutKind.Sequential, Size = 0x8, Pack = 0x8)]
+ readonly record struct NetworkServiceAccountId
+ {
+ public readonly ulong Id;
+
+ public NetworkServiceAccountId(ulong id)
+ {
+ Id = id;
+ }
+
+ public override readonly string ToString()
+ {
+ return Id.ToString("x16");
+ }
+ }
+}