21 lines
437 B
C#
21 lines
437 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Runtime.Serialization;
|
|||
|
|
|
|||
|
|
using BS.Shared.Core;
|
|||
|
|
|
|||
|
|
namespace BS.Shared.DataContracts
|
|||
|
|
{
|
|||
|
|
[DataContract]
|
|||
|
|
[KnownType(typeof(DateTimeSpan))]
|
|||
|
|
public class SbdConfigDC : IDataContract
|
|||
|
|
{
|
|||
|
|
[DataMember]
|
|||
|
|
public List<CostRatePeriodDC> Stundensaetze { get; set; }
|
|||
|
|
|
|||
|
|
[DataMember]
|
|||
|
|
public List<FeiertagDC> FreieTage { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|