Files
BeWoPlaner/Shared/DataContracts/ImportSupportConceptResultDC.cs

21 lines
526 B
C#
Raw Permalink Normal View History

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; }
}
}