2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-09-13 20:43:19 +00:00

Guid to UUID

This commit is contained in:
2025-03-03 04:48:53 +03:00
parent 47272f5463
commit 276e7b17fd
14 changed files with 195 additions and 121 deletions

View File

@@ -1,4 +1,5 @@
using System;
using Esiur.Data;
using System;
using System.Collections.Generic;
using System.Text;
@@ -9,9 +10,9 @@ struct IIPPacketAttachInfo
public string Link;
public ulong Age;
public byte[] Content;
public Guid ClassId;
public UUID ClassId;
public IIPPacketAttachInfo(Guid classId, ulong age, string link, byte[] content)
public IIPPacketAttachInfo(UUID classId, ulong age, string link, byte[] content)
{
ClassId = classId;
Age = age;