autobus-api_old/AutobusApi.Domain/Entities/Review.cs
2023-11-15 18:57:51 +02:00

21 lines
441 B
C#

using AutobusApi.Domain.Common;
namespace AutobusApi.Domain.Entities;
public class Review : EntityBase
{
public int Rating { get; set; }
public string? Comment { get; set; }
public DateTime PostDateTimeUtc { get; set; }
public int UserId { get; set; }
public User User { get; set; } = null!;
public int VehicleEnrollmentId { get; set; }
public VehicleEnrollment VehicleEnrollment { get; set; } = null!;
}