Files
BeWoPlaner/Data/Entities/Feiertag.cs
2023-10-26 00:06:56 +02:00

22 lines
416 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; }
public virtual long? OrganisationOid { get; set; }
}
}