WIP: ZugferdRESTService

This commit is contained in:
Jonathan Jenne
2020-03-10 16:33:28 +01:00
parent 1c2fb43f6a
commit 540d021e27
12 changed files with 259 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace ZUGFeRDRESTService
{
public class UploadTestModel : PageModel
{
public void OnGet()
{
}
}
}