Files
BeWoPlaner/Data/Entities/HomeViewPanel.cs
2019-08-15 11:06:50 +02:00

52 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BS.Shared;
namespace BeWo.Data.Entities
{
public class HomeViewPanel : BeWoEntityBase
{
private HomeViewPanelType _PanelType;
private string _HeaderTitel;
private string _Value;
public HomeViewPanel()
{
_Tid = TableID.HomeViewPanel;
}
public virtual HomeViewPanelType PanelType
{
get => _PanelType;
set
{
if (AreDifferent(_PanelType, value))
_PanelType = value;
}
}
public virtual string HeaderTitel
{
get => _HeaderTitel;
set
{
if (AreDifferent(_HeaderTitel, value))
_HeaderTitel = value;
}
}
public virtual string Value
{
get => _Value;
set
{
if (AreDifferent(_Value, value))
_Value = value;
}
}
}
}