14 lines
No EOL
307 B
C#
14 lines
No EOL
307 B
C#
namespace DrinkRateAPI.DbEntities;
|
|
|
|
public class DbCompany
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public Guid TableId { get; set; }
|
|
|
|
public ICollection<DbProduct> Products { get; set; }
|
|
|
|
public ICollection<DbCompanyRating> CompanyRatings { get; set; }
|
|
|
|
public string CompanyName { get; set; }
|
|
} |