Files
BeWoPlaner/Shared/DataContracts/HilfeplanImportItemDC.cs

24 lines
550 B
C#

using System.Collections.Generic;
using System.Runtime.Serialization;
namespace BS.Shared.DataContracts
{
[DataContract]
public partial class HilfeplanImportItemDC : IDataContract
{
[DataMember]
public string Label { get; set; }
[DataMember]
public string Content { get; set; }
[DataMember]
public string FieldName { get; set; }
[DataMember]
public bool DoImport { get; set; }
[DataMember]
public IList<HilfeplanImportItemDC> Items { get; set; }
}
}