26 lines
580 B
C#
26 lines
580 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Runtime.Serialization;
|
|
|
|
using BS.Shared.Core;
|
|
using BS.Shared.DataContracts.Compact;
|
|
|
|
namespace BS.Shared.DataContracts
|
|
{
|
|
public class DienstBlockDC : IDataContract
|
|
{
|
|
[DataMember]
|
|
public CompactWohnheimDC Wohnheim { get; set; }
|
|
|
|
[DataMember]
|
|
public EmployeeDC Employee { get; set; }
|
|
|
|
[DataMember]
|
|
public List<ContractDC> Contracts { get; set; }
|
|
|
|
[DataMember]
|
|
public Dictionary<int, long>[] DienstDictArray { get; set; }
|
|
}
|
|
}
|