12 lines
No EOL
267 B
C#
12 lines
No EOL
267 B
C#
namespace DrinkRateAPI.DbEntities;
|
|
|
|
public class DbCompanyTable
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public ICollection<DbCompany> Companies { get; set; }
|
|
|
|
public string CompanyTableName { get; set; }
|
|
|
|
public DbProductTable ProductTable { get; set; }
|
|
} |