Umgeschrieben auf Sevdesk

This commit is contained in:
2023-07-17 19:10:11 +02:00
parent 47e39bc11f
commit 8c640c426c
32 changed files with 1795 additions and 369 deletions

View File

@@ -0,0 +1,12 @@
// See https://aka.ms/new-console-template for more information
using Newtonsoft.Json;
namespace ConsoleApp3.DataContracts
{
internal class Invoices
{
[JsonProperty("objects")] public Invoice[] Invoice { get; set; }
}
}