Files
BeWoPlaner/Data/Entities/FlexibleReportLayout.cs
2019-07-15 09:45:38 +02:00

67 lines
1.4 KiB
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 FlexibleReportLayout : BeWoEntityBase
{
private long _CreatorOid;
private string _LayoutName;
private string _LayoutString;
public FlexibleReportLayout()
{
_Tid = TableID.FlexibleReportLayout;
}
public virtual long CreatorOid
{
get
{
return _CreatorOid;
}
set
{
if (AreDifferent(_CreatorOid, value))
{
_CreatorOid = value;
}
}
}
public virtual string LayoutName
{
get
{
return _LayoutName;
}
set
{
if (AreDifferent(_LayoutName, value))
{
_LayoutName = value;
}
}
}
public virtual string LayoutString
{
get
{
return _LayoutString;
}
set
{
if (AreDifferent(_LayoutString, value))
{
_LayoutString = value;
}
}
}
}
}