Files
BeWoPlaner/Shared/Core/WohnheimbuchungsIntervall.cs
2016-06-27 01:45:38 +02:00

20 lines
670 B
C#

using System.Collections.Generic;
namespace BS.Shared.Core
{
public class WohnheimbuchungsIntervall
{
public long RelationOid { get; set; }
public DateTimeSpan Span { get; set; }
public WohnheimbuchungsintervallTyp Typ { get; set; }
public List<long> RelatedObjects { get; set; }
public WohnheimbuchungsIntervall(long pRelationOid, DateTimeSpan pSpan, WohnheimbuchungsintervallTyp pTyp, List<long> pRelatedObjects)
{
RelatedObjects = pRelatedObjects ?? new List<long>();
RelationOid = pRelationOid;
Span = pSpan;
Typ = pTyp;
}
}
}