2021-03-22 12:09:25 -04:00
|
|
|
|
using System.Collections.Generic;
|
2018-05-30 21:50:20 -04:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
2021-03-22 12:09:25 -04:00
|
|
|
|
namespace Data.Models.Client.Stats
|
2018-05-30 21:50:20 -04:00
|
|
|
|
{
|
2018-05-31 20:17:52 -04:00
|
|
|
|
public class EFClientRatingHistory : SharedEntity
|
2018-05-30 21:50:20 -04:00
|
|
|
|
{
|
|
|
|
|
[Key]
|
2018-05-31 20:17:52 -04:00
|
|
|
|
public int RatingHistoryId { get; set; }
|
2018-05-30 21:50:20 -04:00
|
|
|
|
public int ClientId { get; set; }
|
|
|
|
|
[ForeignKey("ClientId")]
|
|
|
|
|
public virtual EFClient Client { get; set; }
|
|
|
|
|
public virtual ICollection<EFRating> Ratings { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|