Files
Web_IoTBase_Sever_Prod/CommonEntity/CacheEntity/TakeCard_Cache.cs
2025-12-11 14:04:39 +08:00

20 lines
395 B
C#

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; }
}
}