Files
BeWoPlaner/Data/Entities/NotizenEintrag.cs

17 lines
308 B
C#
Raw Normal View History

2018-10-08 12:09:48 +02:00
using System;
using BS.Shared;
namespace BeWo.Data.Entities
{
public class NotizenEintrag : BeWoEntityBase
{
public NotizenEintrag()
{
_Tid = TableID.NotizenEintrag;
}
public virtual DateTime? Datum { get; set; }
public virtual ValueListEntry EintragKategorie { get; set; }
2018-10-08 12:09:48 +02:00
}
}