IW4M-Admin/Data/Models/Client/Stats/EFClientRatingHistory.cs

17 lines
498 B
C#
Raw Normal View History

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