1
0
mirror of synced 2024-12-18 17:25:54 +01:00
GC-local-server-rewrite/Domain/Entities/CardPlayCount.cs

11 lines
198 B
C#
Raw Normal View History

namespace Domain.Entities;
public partial class CardPlayCount
{
public long CardId { get; set; }
public long PlayCount { get; set; }
public DateTime LastPlayedTime { get; set; }
}