Files
BeWoPlaner/Data/Entities/GoalRating.cs

20 lines
384 B
C#
Raw Permalink Normal View History

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; }
}
}