26 lines
631 B
C#
26 lines
631 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
using BS.Shared.DataContracts.Compact;
|
|
|
|
namespace BS.Shared.DataContracts
|
|
{
|
|
[DataContract]
|
|
public class WohnheimbuchungEmployeeRelationDC : IDataContract
|
|
{
|
|
[DataMember]
|
|
public CompactEmployeeDC Employee { get; set; }
|
|
|
|
[DataMember]
|
|
public long? Employee2WohnheimOid { get; set; }
|
|
|
|
[DataMember]
|
|
public long? Employee2WohnheimVersion { get; set; }
|
|
|
|
[DataMember]
|
|
public DateTime? StartDate { get; set; }
|
|
|
|
[DataMember]
|
|
public DateTime? EndDate { get; set; }
|
|
}
|
|
} |