20 lines
384 B
C#
20 lines
384 B
C#
|
|
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; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|