42 lines
1.1 KiB
C#
42 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 FLSAnalysisGroupDC : IDataContract
|
|
{
|
|
private List<SupportConceptFLSOverviewDC> _SupportConcepts;
|
|
|
|
[DataMember]
|
|
public CompactCustomerDC Customer { get; set; }
|
|
|
|
[DataMember]
|
|
public CompactEmployeeDC Employee { get; set; }
|
|
|
|
[DataMember]
|
|
public CompactOrganisationDC Organisation { get; set; }
|
|
|
|
[DataMember]
|
|
public CompactTeamDC Team { get; set; }
|
|
|
|
[DataMember]
|
|
public List<SupportConceptFLSOverviewDC> SupportConcepts
|
|
{
|
|
get
|
|
{
|
|
return this._SupportConcepts ?? (this._SupportConcepts = new List<SupportConceptFLSOverviewDC>());
|
|
}
|
|
|
|
set
|
|
{
|
|
this._SupportConcepts = value;
|
|
}
|
|
}
|
|
|
|
[DataMember]
|
|
public decimal TotalFLM { get; set; }
|
|
}
|
|
} |