20 lines
395 B
C#
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; }
|
|
}
|
|
}
|