Files
BeWoPlaner/Data/Entities/Feiertag.cs
2018-10-08 12:09:48 +02:00

20 lines
356 B
C#

using System;
using System.Collections.Generic;
using BS.Shared;
namespace BeWo.Data.Entities
{
public class Feiertag : BeWoEntityBase
{
public Feiertag()
{
this._Tid = TableID.Feiertag;
}
public virtual string Name { get; set; }
public virtual DateTime Datum { get; set; }
}
}