23 lines
449 B
C#
23 lines
449 B
C#
using BS.Shared.DataContracts.Compact;
|
|
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 GkvClientSumResponseJson : GkvResponseDC
|
|
{
|
|
public GkvClientSumResponseJson()
|
|
{
|
|
|
|
}
|
|
|
|
[JsonProperty("sum")]
|
|
[DataMember] public decimal Sum { get; set; }
|
|
}
|
|
}
|