Files

25 lines
458 B
C#
Raw Permalink Normal View History

2025-11-21 08:48:01 +08:00
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MessagePack;
namespace CommonEntity
{
[MessagePackObject]
public class ForkSystem
{
[Key(0)]
public string? EndPoint { get; set; }
[Key(1)]
public byte[] Data { get; set; }
[Key(2)]
public DateTime CurrentTime { get; set; }
}
}