12 lines
229 B
C#
12 lines
229 B
C#
namespace Domain.Entities;
|
|
|
|
public class Coin
|
|
{
|
|
public long CardId { get; set; }
|
|
|
|
public int Count { get; set; }
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
public DateTime UpdateTime { get; set; }
|
|
} |