Files
BeWoPlaner/Shared/DataContracts/GkvAbrechnung/GkvApp8SendNewResponse.cs
2024-06-11 14:31:17 +02:00

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