Files
BeWoPlaner/Data/Entities/RatingType.cs
2020-08-17 15:50:00 +02:00

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