Files
BeWoPlaner/Shared/DataContracts/Invoicing/GkvAbrechnung/GkvClientRequestDC.cs

22 lines
434 B
C#

using Newtonsoft.Json;
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 GkvClientRequestDC : AppRequestDC
{
public GkvClientRequestDC(RequestType type) : base(type)
{
}
[JsonProperty("key")]
[DataMember] public string GkvSecretKey { get; set; }
}
}