16 lines
382 B
C#
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>();
|
|
}
|
|
}
|
|
} |