14 lines
No EOL
272 B
C#
14 lines
No EOL
272 B
C#
namespace DrinkRateAPI.DbEntities;
|
|
|
|
public class DbUserProductTableStats
|
|
{
|
|
public Guid UserId { get; set; }
|
|
|
|
public Guid ProductTabelId { get; set; }
|
|
|
|
public int Count { get; set; }
|
|
|
|
public int MaxCount { get; set; }
|
|
|
|
public int Credits { get; set; }
|
|
} |