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; }
|
2019-08-09 16:40:41 +02:00
|
|
|
|
|
|
|
|
|
|
public virtual ValueListEntry EintragKategorie { get; set; }
|
2018-10-08 12:09:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|