41 lines
887 B
C#
41 lines
887 B
C#
using BS.Shared;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class Vorlagentabelle : BeWoEntityBase
|
|
{
|
|
private string _Tabellenname;
|
|
private long? _ObjectTid;
|
|
|
|
public virtual string Tabellenname
|
|
{
|
|
get { return _Tabellenname; }
|
|
set
|
|
{
|
|
if (AreDifferent(_Tabellenname, value))
|
|
_Tabellenname = value;
|
|
}
|
|
}
|
|
public virtual long? ObjectTid
|
|
{
|
|
get { return _ObjectTid; }
|
|
set
|
|
{
|
|
if (AreDifferent(_ObjectTid, value))
|
|
_ObjectTid = value;
|
|
}
|
|
}
|
|
|
|
public Vorlagentabelle()
|
|
{
|
|
_Tid = TableID.Vorlagentabelle;
|
|
}
|
|
|
|
}
|
|
}
|