10 lines
No EOL
208 B
C#
10 lines
No EOL
208 B
C#
namespace DrinkRateAPI.DbEntities;
|
|
|
|
public class DbProductTable
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public ICollection<DbProduct> Products { get; set; }
|
|
|
|
public string ProductTableName { get; set; }
|
|
} |