21 lines
481 B
C#
21 lines
481 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Runtime.Serialization;
|
|||
|
|
|
|||
|
|
namespace BS.Shared.DataContracts
|
|||
|
|
{
|
|||
|
|
[DataContract]
|
|||
|
|
public partial class AbsenceOverviewFilterDC : IDataContract
|
|||
|
|
{
|
|||
|
|
[DataMember]
|
|||
|
|
public List<long> AbsenceReasons { get; set; }
|
|||
|
|
|
|||
|
|
[DataMember]
|
|||
|
|
public List<long> EmploymentType { get; set; }
|
|||
|
|
|
|||
|
|
[DataMember]
|
|||
|
|
public int Year { get; set; }
|
|||
|
|
|
|||
|
|
[DataMember]
|
|||
|
|
public int Month { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|