using System.Collections.Generic; using System.Runtime.Serialization; namespace BS.Shared.DataContracts { [DataContract] public class SupportConceptFLSOverviewDC : IDataContract { private List _ServiceRecords; [DataMember] public List ServiceRecords { get { return this._ServiceRecords ?? (this._ServiceRecords = new List()); } set { this._ServiceRecords = value; } } [DataMember] public SupportConceptCostBearerRelDC SupportConcept2CostBearer { get; set; } } }