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
|
|
|
|
|
|
{
|
2024-10-28 15:48:18 +01:00
|
|
|
|
[DataContract]
|
|
|
|
|
|
public class GkvRequestDC : AppRequestDC
|
|
|
|
|
|
{
|
2024-10-31 15:38:24 +01:00
|
|
|
|
public GkvRequestDC() : base(RequestType.Default) { }
|
|
|
|
|
|
|
2024-10-28 15:48:18 +01:00
|
|
|
|
public GkvRequestDC(RequestType type) : base(type) { }
|
2024-10-25 17:30:27 +02:00
|
|
|
|
|
2024-10-28 15:48:18 +01:00
|
|
|
|
public GkvRequestDC(RequestType type, string tenant, string username, string password) : base(type, tenant)
|
|
|
|
|
|
{
|
|
|
|
|
|
Username = username;
|
|
|
|
|
|
Password = password;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[DataMember] public string Username { get; set; }
|
|
|
|
|
|
[DataMember] public string Password { get; set; }
|
|
|
|
|
|
}
|
2024-10-25 17:30:27 +02:00
|
|
|
|
}
|