12 lines
No EOL
271 B
C#
12 lines
No EOL
271 B
C#
namespace DrinkRateAPI.DbEntities;
|
|
|
|
public class DbProductTable
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public string TableName { get; set; }
|
|
|
|
public ICollection<DbProduct> Products { get; set; }
|
|
|
|
public ICollection<DbProductRating> ProductRatings { get; set; }
|
|
} |