20 lines
438 B
C#
20 lines
438 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.DataContracts
|
|
{
|
|
public class AbwesenheitsInformationDC
|
|
{
|
|
[DataMember]
|
|
public EmployeeDC Employee { get; set; }
|
|
[DataMember]
|
|
public int Month { get; set; }
|
|
[DataMember]
|
|
public int Year { get; set; }
|
|
}
|
|
}
|