Files
Web_IoTBase_Sever_Prod/CommonEntity/CacheEntity/TakeCard_Cache.cs

20 lines
395 B
C#
Raw Normal View History

2025-12-11 14:04:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MemoryPack;
namespace CommonEntity.CacheEntity
{
[MemoryPackable()]
public partial class TakeCard_Cache
{
public byte TakeCardStatus { get; set; }
public byte IdentityInfo { get; set; }
public byte NOCardInfo { get; set; }
}
}