1
0
mirror of synced 2025-02-11 16:33:03 +01:00
2024-03-29 17:34:59 +08:00

13 lines
401 B
C#

using Domain.Enums;
namespace Domain.Entities;
public class Unlock
{
public long CardId { get; set; }
public int UnlockItemId { get; set; }
public UnlockType UnlockType { get; set; }
public bool IsNew { get; set; }
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; }
}