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