Files
BeWoPlaner/Shared/DataContracts/GkvAbrechnung/GkvResponseDC.cs

19 lines
574 B
C#
Raw Normal View History

2024-10-25 17:30:27 +02:00
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
{
[DataContract]
public class GkvResponseDC : AppResponseDC, IDataContract
2024-10-25 17:30:27 +02:00
{
2024-10-28 15:48:18 +01:00
public GkvResponseDC() : base(false) { }
2024-10-25 17:30:27 +02:00
public GkvResponseDC(bool success) : base(success) { }
public GkvResponseDC(bool success, string message) : base(success, message) { }
2024-12-06 11:40:53 +01:00
public GkvResponseDC(bool success, string message, string title) : base(success, message, title) { }
2024-10-25 17:30:27 +02:00
}
}