Files
BeWoPlaner/Shared/DataContracts/FLSAnalysisRootDC.cs
2025-12-01 19:08:37 +01:00

45 lines
1.1 KiB
C#

using System.Collections.Generic;
using System.Runtime.Serialization;
using BS.Shared.DataContracts.Compact;
namespace BS.Shared.DataContracts
{
[DataContract]
public partial class FLSAnalysisRootDC : IDataContract
{
private List<FLSAnalysisGroupDC> _Groups;
[DataMember]
public CompactCustomerDC Customer { get; set; }
[DataMember]
public CompactEmployeeDC Employee { get; set; }
[DataMember]
public List<FLSAnalysisGroupDC> Groups
{
get
{
return this._Groups ?? (this._Groups = new List<FLSAnalysisGroupDC>());
}
set
{
this._Groups = value;
}
}
[DataMember]
public CompactOrganisationDC Organisation { get; set; }
[DataMember]
public decimal SollFLSPerWeek { get; set; }
[DataMember]
public decimal SollFLSTotal { get; set; }
[DataMember]
public decimal TotalFLM { get; set; }
}
}