26 lines
561 B
C#
26 lines
561 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.DataContracts.GkvAbrechnung
|
|
{
|
|
public class GkvApp8SendNewResponse : GkvApp8Response
|
|
{
|
|
[DataMember]
|
|
public GkvTransferProtokollDC GkvTransferProtokollDC { get; set; }
|
|
|
|
public GkvApp8SendNewResponse()
|
|
{
|
|
|
|
}
|
|
|
|
public GkvApp8SendNewResponse(bool success) : this()
|
|
{
|
|
Success = success;
|
|
}
|
|
}
|
|
}
|