21 lines
526 B
C#
21 lines
526 B
C#
using BS.Shared.DataContracts.Compact;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace BS.Shared.DataContracts
|
|
{
|
|
[DataContract]
|
|
public partial class ImportSupportConceptResultDC : IDataContract
|
|
{
|
|
[DataMember]
|
|
public SupportConceptDC ImportedSupportConcept { get; set; }
|
|
|
|
[DataMember]
|
|
public IList<CompactSupportConceptDC> PossibleSupportConcepts { get; set; }
|
|
|
|
[DataMember]
|
|
public string ImportMessage { get; set; }
|
|
|
|
|
|
}
|
|
} |