14 lines
No EOL
272 B
C#
14 lines
No EOL
272 B
C#
namespace DrinkRateAPI.DbEntities;
|
|
|
|
public class DbCompanyRating
|
|
{
|
|
public Guid UserId { get; set; }
|
|
|
|
public Guid CompanyId { get; set; }
|
|
|
|
public Guid CompanyTableId { get; set; }
|
|
|
|
public byte Rating { get; set; }
|
|
|
|
public string? Comment { get; set; }
|
|
} |