Files
BeWoPlaner/Data/Models/XRechnung/XRechnungRequest.cs
2024-12-16 12:41:11 +01:00

19 lines
343 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BeWo.Data.Models.XRechnung
{
public class XRechnungRequest
{
[JsonProperty("json")]
public XRechnung Json { get; set; }
[JsonProperty("pdf")]
public string Url { get; set; }
}
}