21 lines
573 B
C#
21 lines
573 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 GkvServerGetStatusRequestDC : GkvServerRequestDC
|
|
{
|
|
public GkvServerGetStatusRequestDC()
|
|
: base(RequestType.GkvServerGetStatus) { }
|
|
|
|
public GkvServerGetStatusRequestDC(string tenant, string username, string password)
|
|
: base(RequestType.GkvServerGetStatus, tenant, username, password) { }
|
|
|
|
[DataMember] public long[] Oids { get; set; }
|
|
}
|
|
}
|