drinkrate/DrinkRateAPI/DbEntities/DbCompanyRating.cs
2025-08-09 19:05:02 +02:00

14 lines
No EOL
349 B
C#

namespace DrinkRateAPI.DbEntities;
public class DbCompanyRating : DbEntityWithHistory
{
public Guid UserProfileId { get; set; }
public DbUserProfile UserProfile { get; set; }
public Guid CompanyId { get; set; }
public DbCompany Company { get; set; }
public byte Rating { get; set; }
public string? Comment { get; set; }
}