using System.Collections.Generic; using BS.Shared; namespace BeWo.Data.Entities { public class GoalRating : BeWoEntityBase { public GoalRating() { this._Tid = TableID.GoalRating; } public virtual long? ValueListEntryOid { get; set; } public virtual RatingType RatingType { get; set; } } }