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

16 lines
382 B
C#

using System;
using System.Collections.Generic;
namespace BS.Shared.Core
{
public class SimpleWohnheimbuchungsRelationHelper
{
public DateTime Datum { get; set; }
public List<long> RelatedObjects { get; set; }
public SimpleWohnheimbuchungsRelationHelper()
{
RelatedObjects = new List<long>();
}
}
}