23 lines
417 B
C#
23 lines
417 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
using BS.Shared;
|
|||
|
|
|
|||
|
|
namespace BeWo.Data.Entities
|
|||
|
|
{
|
|||
|
|
public class RatingType : BeWoEntityBase
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public RatingType()
|
|||
|
|
{
|
|||
|
|
this._Tid = TableID.RatingType;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public virtual string DisplayName { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
public virtual int? RatingId { get; set; }
|
|||
|
|
|
|||
|
|
public virtual int? Position { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|