15 lines
380 B
C#
15 lines
380 B
C#
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace BS.Shared.DataContracts
|
|
{
|
|
[DataContract]
|
|
public class CustomerInfoDC : IDataContract
|
|
{
|
|
[DataMember]
|
|
public string CurrentSupportConcept { get; set; }
|
|
|
|
[DataMember]
|
|
public List<SupportConcetInfoDC> SupportConceptInfos { get; set; }
|
|
}
|
|
} |