namespace DrinkRateAPI.DbEntities; public class DbUserProfileCompanyTableStat { public Guid UserProfileId { get; set; } public DbUserProfile UserProfile { get; set; } public Guid CompanyTableId { get; set; } public DbCompanyTable CompanyTable { get; set; } public int RatingCount { get; set; } public int HighestRatingCount { get; set; } public int Credits { get; set; } }